/* FAQ Page Styles */

body {
    background: #fff;
}

/* FAQ Header */
.faq-header {
    background: #fff;
}

.faq-container {
    display: flex;
    min-height: calc(100vh - 100px);
    padding-top: 100px;
}

/* Left Section - Hero Image */
.faq-hero {
    width: 45%;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 120px 40px 80px;
}

.faq-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.faq-hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: left;
    font-family: 'Inter', sans-serif;
    width: 100%;
    max-width: 400px;
    margin-left: -40px;
}

.faq-hero-title {
    font-size: 100px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
}

.faq-hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

/* Right Section - FAQ List */
.faq-content {
    width: 55%;
    padding: 120px 100px 60px 60px;
    display: flex;
    flex-direction: column;
}

.faq-list {
    flex: 1;
}

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    font-size: 18px;
    font-weight: 400;
    color: #000;
    transition: color 0.3s;
}

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

.faq-icon {
    font-size: 14px;
    transition: transform 0.3s;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px;
    background: #F5F5F5;
    margin-bottom: 24px;
}

.faq-answer-text {
    font-size: 16px;
    color: #666666;
    line-height: 1.7;
}

/* Pagination */
.faq-pagination {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}

.faq-pagination a,
.faq-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
}

.faq-pagination a:hover {
    border-color: #000;
    color: #000;
}

.faq-pagination .active {
    background: #000;
    border-color: #000;
    color: #fff;
}

.faq-pagination .disabled {
    color: #ccc;
    cursor: not-allowed;
}

/* Footer */
.faq-footer {
    background: #000;
    color: #fff;
    padding: 40px 60px;
}

.faq-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

.faq-footer-logo {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
}

.faq-footer-nav {
    display: flex;
    gap: 40px;
}

.faq-footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.faq-footer-info {
    text-align: right;
}

.faq-footer-info p {
    font-size: 14px;
    color: #999;
    margin-bottom: 8px;
}

.faq-footer-info span {
    color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
    .faq-container {
        flex-direction: column;
    }

    .faq-hero {
        width: 100%;
        min-height: 400px;
        padding: 60px 40px;
    }

    .faq-hero-title {
        font-size: 60px;
    }

    .faq-content {
        width: 100%;
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .faq-hero {
        min-height: 300px;
        padding: 40px 24px;
    }

    .faq-hero-title {
        font-size: 48px;
    }

    .faq-hero-subtitle {
        font-size: 18px;
    }

    .faq-content {
        padding: 40px 24px;
    }

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

    .faq-footer {
        padding: 30px 24px;
    }

    .faq-footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .faq-footer-info {
        text-align: left;
    }
}
