  /* =========================
       FAQ PAGE STYLES (Theme 1)
       ========================= */
    :root {
        --faq-bg: #f9f9f9;
        --faq-card-bg: #ffffff;
        --faq-text: #333333;
        --faq-muted: #666666;
        --faq-border: #eeeeee;
        --faq-primary: #1a1a1a;
        --faq-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        --faq-transition: all 0.35s ease;
    }

    .t1-faq-section {
        padding: 80px 0;
        background-color: var(--faq-bg);
        min-height: 80vh;
    }

    .t1-faq-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Header */
    .t1-faq-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .t1-faq-title {
        font-family: 'Playfair Display', serif;
        font-size: 3rem;
        font-weight: 700;
        color: var(--faq-primary);
        margin-bottom: 15px;
    }

    .t1-faq-subtitle {
        font-family: 'Outfit', sans-serif;
        font-size: 1.1rem;
        color: var(--faq-muted);
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }

    .t1-faq-divider {
        width: 60px;
        height: 3px;
        background-color: var(--faq-primary);
        margin: 20px auto 0;
    }

    /* Accordion List */
    .t1-faq-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    /* FAQ Item Card */
    .t1-faq-item {
        background: var(--faq-card-bg);
        border-radius: 16px;
        overflow: hidden;
        box-shadow: var(--faq-shadow);
        transition: var(--faq-transition);
        border: 1px solid transparent;
    }

    .t1-faq-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        border-color: rgba(0, 0, 0, 0.05);
    }

    /* Question Header (Toggle) */
    .t1-faq-question {
        padding: 24px 30px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        user-select: none;
        transition: background-color 0.2s ease;
    }
    
    .t1-faq-question h3 {
        font-family: 'Outfit', sans-serif;
        font-size: 1.15rem;
        font-weight: 600;
        color: var(--faq-primary);
        margin: 0;
        padding-right: 20px;
        line-height: 1.4;
    }

    /* Icon Animation */
    .t1-faq-icon {
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: #f5f5f5;
        color: var(--faq-primary);
        font-size: 14px;
        transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s;
        flex-shrink: 0;
    }

    .t1-faq-item.active .t1-faq-icon {
        transform: rotate(180deg); /* Or 135deg for plus to cross */
        background-color: var(--faq-primary);
        color: white;
    }

    /* Answer Body */
    .t1-faq-answer {
        height: 0;
        opacity: 0;
        overflow: hidden;
        transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
        background-color: #fafafa;
    }

    .t1-faq-answer-inner {
        padding: 0 30px 24px 30px;
        color: var(--faq-muted);
        font-family: 'Outfit', sans-serif;
        font-size: 1rem;
        line-height: 1.7;
    }

    .t1-faq-item.active .t1-faq-answer {
        height: auto; /* Fallback */
        opacity: 1;
    }

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

        .t1-faq-title {
            font-size: 2.2rem;
        }

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

        .t1-faq-answer-inner {
            padding: 0 20px 20px 20px;
        }

        .t1-faq-question h3 {
            font-size: 1.05rem;
        }
    }