/* Scroll animations are defined in assets/css/main.css */

    /* FAQ Page Styles */
    .page-hero {
        background-color: #EDF2F7;
        color: #1A365D;
        padding: 100px 20px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .page-hero-container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .page-hero h1 {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 15px;
        line-height: 1.2;
        color: #1A365D;
    }

    .page-hero p {
        font-size: 18px;
        color: #4A5568;
        max-width: 700px;
        margin: 0 auto;
    }

    /* FAQ Section */
    .faq-section {
        padding: 80px 20px;
        max-width: 1000px;
        margin: 0 auto;
    }

    .faq-intro {
        text-align: center;
        margin-bottom: 50px;
    }

    .faq-intro h2 {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 28px;
        font-weight: 700;
        color: #1A365D;
        margin-bottom: 15px;
    }

    .faq-intro p {
        font-size: 16px;
        color: #666;
        max-width: 700px;
        margin: 0 auto;
    }

    /* Accordion Styles */
    .faq-accordion {
        margin-bottom: 20px;
    }

    .faq-item {
        background-color: #FFFFFF;
        border: 2px dotted rgba(76, 175, 80, 0.3);
        border-radius: 10px;
        margin-bottom: 15px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        border-color: rgba(76, 175, 80, 0.6);
        box-shadow: 0 5px 20px rgba(76, 175, 80, 0.1);
    }

    .faq-item.active {
        border-color: rgba(76, 175, 80, 0.8);
        box-shadow: 0 8px 25px rgba(76, 175, 80, 0.15);
    }

    .faq-question {
        padding: 25px 30px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #FFFFFF;
        transition: background-color 0.3s ease;
    }

    .faq-item.active .faq-question {
        background-color: #EDF2F7;
    }

    .faq-question h3 {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 18px;
        font-weight: 600;
        color: #1A365D;
        margin: 0;
        flex: 1;
        padding-right: 20px;
    }

    .faq-icon {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(76, 175, 80, 0.1);
        border-radius: 50%;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }

    .faq-item.active .faq-icon {
        background-color: rgba(49, 130, 206, 0.18);
        transform: rotate(180deg);
    }

    .faq-icon::before {
        content: '+';
        font-size: 24px;
        font-weight: 700;
        color: #1A365D;
        transition: all 0.3s ease;
    }

    .faq-item.active .faq-icon::before {
        content: '−';
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        background-color: #FFFFFF;
    }

    .faq-item.active .faq-answer {
        max-height: 1000px;
    }

    .faq-answer-content {
        padding: 0 30px 25px 30px;
        color: #333;
        font-size: 16px;
        line-height: 1.8;
        text-align: justify;
    }

    .faq-answer-content p {
        margin-bottom: 15px;
    }

    .faq-answer-content p:last-child {
        margin-bottom: 0;
    }

    .faq-answer-content ul,
    .faq-answer-content ol {
        margin-left: 20px;
        margin-bottom: 15px;
    }

    .faq-answer-content li {
        margin-bottom: 8px;
    }

    /* Appointment Booking Banner */
    .faq-appointment-banner {
        width: 100%;
        overflow: hidden;
        background-color: #EDF2F7;
    }

    .faq-appointment-banner picture,
    .faq-appointment-banner img {
        display: block;
        width: 100%;
    }

    .faq-appointment-banner img {
        height: auto;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-hero {
            padding: 60px 20px;
        }

        .page-hero h1 {
            font-size: 28px;
        }

        .page-hero p {
            font-size: 16px;
        }

        .faq-section {
            padding: 50px 15px;
        }

        .faq-intro h2 {
            font-size: 24px;
        }

        .faq-question {
            padding: 20px 20px;
        }

        .faq-question h3 {
            font-size: 16px;
        }

        .faq-answer-content {
            padding: 0 20px 20px 20px;
            font-size: 15px;
        }

        .faq-appointment-banner img {
            aspect-ratio: 1 / 1;
            object-fit: contain;
        }
    }

    /* Tablet Responsive */
    @media (max-width: 1024px) {
        .page-hero h1 {
            font-size: 32px;
        }

        .page-hero p {
            font-size: 17px;
        }

        .faq-section {
            padding: 60px 20px;
        }

        .faq-intro h2 {
            font-size: 26px;
        }

    }
