/* FAQ Page Specific Styles */

/* Page Header */
.page-header {
    margin-top: 0;
    height: 450px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-header-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-content {
    position: absolute;
    top: 50%;
    left: 200px;
    transform: translateY(-50%);
    z-index: 2;
    text-align: left;
}

.page-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 32px;
    font-weight: 700;
    color: #522601;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    background-image: url(img/bg_texture.png);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.faq-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.faq-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}


/* Active Navigation */
.nav-link.active {
    color: #8F4100;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .faq-content {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .page-header {
        height: 100vh;
    }
    
    .page-header-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .faq-content {
        padding: 0 20px;
    }
    
    .faq-list {
        gap: 20px;
    }
    
    .faq-question {
        padding: 12px 15px;
        gap: 15px;
    }
    
    .faq-q-icon {
        width: 32px;
        height: 36px;
        font-size: 22px;
    }
    
    .faq-q-text {
        font-size: 16px;
    }
    
    .faq-answer {
        padding: 12px 15px;
        gap: 15px;
    }
    
    .faq-a-icon {
        width: 32px;
        height: 36px;
        font-size: 22px;
    }
    
    .faq-a-text {
        font-size: 16px;
    }
    
    .faq-question::after {
        right: 15px;
        width: 15px;
        height: 3px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 24px;
    }
    
    .faq-question {
        padding: 10px 12px;
        gap: 12px;
    }
    
    .faq-q-icon {
        width: 28px;
        height: 32px;
        font-size: 18px;
    }
    
    .faq-q-text {
        font-size: 16px;
    }
    
    .faq-answer {
        padding: 10px 12px;
        gap: 12px;
    }
    
    .faq-a-icon {
        width: 28px;
        height: 32px;
        font-size: 18px;
    }
    
    .faq-a-text {
        font-size: 16px;
    }
    
    .faq-question::after {
        right: 12px;
        width: 12px;
        height: 2px;
    }
}
