.why-section {
    /* padding: 3rem 1.5rem; */
    /* background-color: #f0faf8; */
    color: #374151;
    text-align: center;
    margin-bottom: 16px;
    background-color: #fff;
    background-image: radial-gradient(#e5e5e5 1px, transparent 1px);
    background-size: 20px 20px;
}

.why-section .container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-bottom: 48px;
}

    /* Heading */
.why-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #374151;
}

.why-section .intro {
    font-size: 1rem;
    color: #374151;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.why-section .cta-container {
    width: 100%;
    margin-top: 32px;
}


    /* Benefits layout */
.benefits {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.benefit {
    width: 320px;
}

.why-section .accordion {
    width: 100%;
    background: #fbf4f088;
    border: none;
    outline: none;
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    transition: background 0.3s ease;
    text-align: left;
}


.why-section .accordion:hover {
    background: var(--footer-bottom-bg-color);
}

.why-section .icon {
    font-size: 32px;
    margin-right: 0.75rem;
    margin-bottom: 12px;
}

.why-section h3 {
    font-size: 1.1rem;
    margin: 0;
}

.benefit .content {
    max-height: 0;
    overflow: hidden;
    padding: 0 1rem;
    background: #fff;
    transition: max-height 0.3s ease;
    border-left: 3px solid var(--input-bg-color);
}
  
.benefit .content p {
    margin: 1rem 0;
    color: #555;
    line-height: 1.5;
}

.benefit.expanded .content {
    max-height: 200px;
}



    /* Responsive */
@media (min-width: 640px) {
    .why-section .intro {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .benefit .content {
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    .benefit.expanded .content {
        max-height: 200px;
        transition: all 0.3s ease;
    }
}