/* ...existing code... */

/* FAQ Page Styles */
.faq-hero {
    background-color: #f0f6ff;
    padding: 80px 0;
    text-align: center;
    background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url('../assests/images/ghibli_bg.png');
    background-size: cover;
    background-position: center;
}

.faq-hero h1 {
    color: #4a7dfc;
    font-size: 2.5rem;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-hero p {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.faq-content {
    padding: 60px 0;
}

.faq-item {
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
    scroll-margin-top: 100px; /* For smooth scrolling to anchors */
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h2 {
    color: #4a7dfc;
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
}

.faq-item p, .faq-item ul, .faq-item ol {
    color: #555;
    line-height: 1.6;
}

.faq-item ul, .faq-item ol {
    padding-left: 20px;
    margin: 15px 0;
}

.faq-item ul li, .faq-item ol li {
    margin-bottom: 8px;
}

.toc-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.toc-links li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.toc-links li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4a7dfc;
}

.toc-links a {
    color: #4a7dfc;
    text-decoration: none;
}

.toc-links a:hover {
    text-decoration: underline;
}

.related-questions h2 {
    color: #4a7dfc;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

/* ...existing code... */
