/* FAQ Page Specific Styles */
.faqs__container {
    padding: 100px 0;
}

.faqs__title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #303a4d;
    margin-bottom: 1rem;
}

.faqs__subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 60px;
}

.faqs__wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faqs__form-section {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    animation: floatAnimation 3s ease-in-out infinite;
}

@keyframes floatAnimation {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.faqs__form-section .contact__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #303a4d;
    margin-bottom: 0.75rem;
}

.faqs__form-section .contact__text {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.faqs__questions-section {
    width: 100%;
}

/* Spollers (Accordion) */
.spollers-faq__item {
    margin-bottom: 24px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.spollers-faq__button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 2px solid #e1e4eb;
    border-radius: 8px;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    padding: 0;
    /* Vertical padding is on the span */
}

.spollers-faq__button span {
    padding: 32px 20px 32px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #303a4d;
    flex-grow: 1;
}

.spollers-faq__button img {
    width: 24px;
    height: 24px;
    margin-right: 34px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.spollers-faq__text {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    background: #fff;
    opacity: 0;
}

.spollers-faq__inner {
    padding: 20px 40px 32px 40px;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    border: 2px solid #e1e4eb;
    border-top: none;
    border-radius: 0 0 8px 8px;
}

.spollers-faq__item.active {
    border-color: transparent;
}

.spollers-faq__item.active .spollers-faq__button {
    border-color: #00b1cf;
    border-radius: 8px 8px 0 0;
    border-bottom: none;
    background-color: #f8f9fa;
}

.spollers-faq__item:hover .spollers-faq__button {
    border-color: #00b1cf;
    background-color: #f8f9fa;
}

.spollers-faq__item.active .spollers-faq__button img {
    transform: rotate(180deg);
}

.spollers-faq__item.active .spollers-faq__text {
    max-height: 1000px;
    opacity: 1;
}

.spollers-faq__item.active .spollers-faq__inner {
    border-color: #00b1cf;
}

/* Responsive */
@media (max-width: 992px) {
    .faqs__wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faqs__form-section {
        order: 2;
    }

    .faqs__questions-section {
        order: 1;
    }
}

@media (max-width: 768px) {
    .faqs__container {
        padding: 60px 0;
    }

    .faqs__title {
        font-size: 2.5rem;
    }

    .spollers-faq__button {
        padding: 1.25rem 1.5rem;
    }

    .spollers-faq__inner {
        padding: 0 1.5rem 1.25rem;
    }
}