
.aae-faq-area .section-title-wrapper {
    padding-bottom: 100px;
}

@media only screen and (max-width: 1199px) {
    .aae-faq-area .section-title-wrapper {
        padding-bottom: 50px;
    }
}

.aae-faq-grid {
    display: grid;
    grid-template-columns: 0.51fr 1fr;
    gap: 50px;
}

@media only screen and (max-width: 767px) {
    .aae-faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .aae-faq-area .section-title-wrapper {
        padding-bottom: 40px;
    }
}

.aae-faq-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aae-faq-item-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: underline;
    text-underline-offset: 5px;
    font-size: 20px;
}

@media only screen and (max-width: 1199px) {
    .aae-faq-item-btn {
        font-size: 16px;
    }
}

.aae-faq-item-title {
    font-size: 32px;
    color: var(--white);
    font-weight: 500;
    line-height: 1.18;
    padding-bottom: 70px;
}

@media only screen and (max-width: 1199px) {
    .aae-faq-item-title {
        font-size: 18px;
        padding-bottom: 40px;
    }
}

.aae-faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 48px 50px;
    border-radius: 20px;
}

@media only screen and (max-width: 1199px) {
    .aae-faq-item {
        padding: 30px 20px;
    }
}

.aae-faq-accordion-title {
    font-size: 22px;
    font-weight: 500;
}

@media only screen and (max-width: 767px) {
    .aae-faq-accordion-title {
        font-size: 18px;
    }
}

.aae-faq-accordion-content p {
    font-size: 20px;
    color: #999;
    line-height: 1.5;
}

.aae-faq-accordion-item {
    border: 1px solid #555;
    margin-bottom: 10px;
    border-radius: 4px;
}

.aae-faq-accordion-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    margin: 0;
    cursor: pointer;
    position: relative;
    transition: background-color 0.2s;
}

.aae-faq-accordion-content {
    padding: 0 30px;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease-out;
}

@media only screen and (max-width: 767px) {
    .aae-faq-accordion-content {
        padding-top: 0;
    }

    .aae-faq-accordion-title {
        padding: 15px;
    }
}

.aae-faq-accordion-content p {
    margin: 0;
}

.aae-faq-area.section-padding.no-pb {
    padding-top: 0;
}