/* FAQ Styles */
.faq-section {
    padding: 120px 0 80px;
    background-color: #FFFFFF;
    min-height: 100vh;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    font-family: 'Gothic A1', sans-serif;
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 4px;
    color: #000000;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.faq-subtitle {
    font-size: 18px;
    color: #666666;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 10px;
}

.faq-intro-text {
    font-size: 16px;
    color: #666666;
    line-height: 1.7;
    max-width: 700px;
    margin: 20px auto 0;
}

.faq-intro-text a {
    color: #000;
    text-decoration: underline;
}

.faq-section-title {
    font-family: 'Gothic A1', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin: 35px 0 15px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.faq-section-title:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

/* FAQ Categories */
.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #F5F5F5;
}

.faq-category-btn {
    background-color: transparent;
    border: 1px solid #000000;
    color: #000000;
    padding: 12px 24px;
    font-family: 'Gothic A1', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-category-btn:hover {
    background-color: #000000;
    color: #FFFFFF;
}

.faq-category-btn.active {
    background-color: #000000;
    color: #FFFFFF;
}

/* FAQ Container */
.faq-container {
    max-width: 900px;
    margin: 0 auto 60px;
}

.faq-item {
    border-bottom: 1px solid #F5F5F5;
    margin-bottom: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #666666;
}

.faq-question h3 {
    font-family: 'Gothic A1', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    flex-shrink: 0;
    color: #000000;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 0 25px 0;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    font-weight: 300;
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.faq-answer ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    font-weight: 300;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.faq-answer ul li:before {
    content: "—";
    position: absolute;
    left: 0;
    color: #000000;
}

/* FAQ Contact Section */
.faq-contact {
    text-align: center;
    padding: 60px 20px;
    background-color: #F5F5F5;
    margin-top: 60px;
}

.faq-contact h2 {
    font-family: 'Gothic A1', sans-serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #000000;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.faq-contact p {
    font-size: 16px;
    color: #666666;
    font-weight: 300;
    margin-bottom: 30px;
}

.faq-contact-btn {
    display: inline-block;
    background-color: #000000;
    color: #FFFFFF;
    padding: 15px 40px;
    font-family: 'Gothic A1', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #000000;
}

.faq-contact-btn:hover {
    background-color: #FFFFFF;
    color: #000000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 100px 0 60px;
    }

    .faq-title {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .faq-subtitle {
        font-size: 16px;
    }

    .faq-categories {
        gap: 10px;
        margin-bottom: 40px;
    }

    .faq-category-btn {
        padding: 10px 18px;
        font-size: 12px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .faq-answer p,
    .faq-answer ul li {
        font-size: 15px;
    }

    .faq-contact {
        padding: 40px 20px;
    }

    .faq-contact h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 80px 0 40px;
    }

    .faq-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .faq-subtitle {
        font-size: 14px;
    }

    .faq-categories {
        flex-direction: column;
        align-items: stretch;
    }

    .faq-category-btn {
        width: 100%;
        text-align: center;
    }

    .faq-question {
        padding: 20px 0;
    }

    .faq-question h3 {
        font-size: 15px;
        padding-right: 15px;
    }

    .faq-item.active .faq-answer {
        padding: 0 0 20px 0;
    }

    .faq-contact h2 {
        font-size: 20px;
    }

    .faq-contact-btn {
        padding: 12px 30px;
        font-size: 12px;
    }
}