.faq-section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    background-color: #f9f9f9;
    margin: 75px auto;
    max-width: 1200px;
    /* margin: 0 auto; */
    padding: 0 40px;
}

.faq-content {
    flex: 1;
    min-width: 280px;
    margin-top: 0;
}

.faq-content h2 {
    font-family: "Chewy", Sans-serif;
    font-size: 3rem;
    font-weight: 100;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    line-height: 60px;
}

.faq-content .highlight {
    color: #ff6525;
}

.faq-box {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.faq-item {
    border-bottom: 1px solid #eee;
    transition: background 0.3s;
}

.faq-item.active {
    background: #2dd59c;
    color: white;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    padding: 32px;
    font-family: "Chewy", Sans-serif;
    font-weight: 100;
    color: var(--dark-blue);
    font-size: 1.25rem;
    text-align: left;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}



.faq-question::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 32px;
    transition: max-height 0.4s ease-in-out;
    background: transparent;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}

.faq-answer p {
    margin: 0;
    color: var(--dark-blue);
    font-weight: 100;
    font-size: 15px;
    line-height: 1.5;
}

.faq-image {
    flex: 1;
    max-width: 400px;
    position: relative;
}


.faq-image .bee-icon {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 90px;
}



.faq-image {
    position: relative;
    text-align: center;
    width: 50%;
    height: auto;
    aspect-ratio: 1/1.15;
    margin: 0;
}

.faq-image img {
    max-width: 100%;
}


.honey-bee {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 15vw;
    max-width: 150px;
    transform-origin: bottom center;
    animation: float-rotate 5s ease-in-out infinite;
}




/* Responsive */
@media (max-width: 768px) {

    .faq-section {
    display: flex;
    flex-direction: column;
    }
    .contact-container {
        flex-direction: column;
        padding: 2rem 1rem 0 1rem;
        text-align: center;
        gap: 3rem;
    }

    .faq-content h5 {
        font-size: 2.5rem;
        line-height: 50px;
    }

    .faq-image {
        width: 100%;
        max-width: 400px;
    }

    .honey-bee {
        width: 40vw;
    }
}