#page {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

#left-deco-container {
    width: fit-content;
    z-index: 1;
}

#left-deco {
    padding-top: 35rem;
    width: 17.665rem;
}

#right-deco-container {
    width: fit-content;
    z-index: 1;
}

#right-deco {
    width: 17.665rem;
}

main {
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding-top: 40px;
    max-width: 55rem;
    flex: 1;
}

main a {
    text-decoration: none;
}

#faq-section {
    width: 100%;
    padding-bottom: 80px;
}

#faq-page-title {
    font-weight: 700;
    font-size: 2.5rem;
    letter-spacing: 0.5rem;
    text-transform: uppercase;
    text-align: center;
    margin: 40px 0 60px 0;
    color: #333333;
}

#faq-list {
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #d4d4d4;
}

.faq-item:first-child {
    border-top: 1px solid #d4d4d4;
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 10px;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: #333333;
    list-style: none;
    user-select: none;
    transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::marker {
    display: none;
    content: "";
}

.faq-item summary::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 300;
    color: #999;
    flex-shrink: 0;
    margin-left: 20px;
    transition: transform 0.3s ease, color 0.2s ease;
}

.faq-item[open] summary::after {
    content: "\2212";
    color: #FF5952;
}

.faq-item summary:hover {
    color: #FF5952;
}

.faq-item summary:hover::after {
    color: #FF5952;
}

.faq-answer {
    padding: 0 10px 20px 10px;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    animation: faqFadeIn 0.3s ease;
}

.faq-answer a {
    color: #FF5952;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.faq-answer a:hover {
    color: #FF6A62;
}

#faq-contact-cta {
    max-width: 900px;
    width: 90%;
    margin: 40px auto 0 auto;
    text-align: center;
    font-size: 1.1rem;
    color: #555;
}

#faq-contact-link {
    color: #FF5952;
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s ease;
}

#faq-contact-link:hover {
    color: #FF6A62;
}

@keyframes faqFadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 1475px) {
    #left-deco-container {
        display: none;
    }
    #right-deco-container {
        display: none;
    }

    #page {
        justify-content: center;
    }
}

@media screen and (max-width: 550px) {
    #faq-page-title {
        font-size: 1.8rem;
        letter-spacing: 0.3rem;
        margin: 20px 0 40px 0;
    }

    .faq-item summary {
        font-size: 0.95rem;
        padding: 14px 8px;
    }

    #faq-contact-cta {
        font-size: 1rem;
        margin-top: 30px;
    }
}
