#benefits {
    background: #2e2e2e;
}

.benefit-card {
      border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex
;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    gap: 0.5rem;
    flex-direction: column;
    background-color: #ffffff;
}

#benefits h1{
    color: white ;
}

.benefit-card h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.benefit-card p {
    color: #757575;
    font-size: 0.95rem;
}
.icon-cont{
   background-color: white;
    padding: 10px;
    border-radius: 50%;
}
.benefit-card svg {
    width: 50px;
    height: 50px;
    fill: var(--primary-color);
    flex-shrink: 0;
    order: 2;
}
