 /*
    ========================================
    --- 0. CONTACT PAGE SCOPED STYLES ---
    ========================================
    */
    :root { /* Fallback variables */
        --primary-color: #3a86ff;
        --text-dark: #1a202c;
        --text-medium: #2c3e50;
        --bg-white: #ffffff;
        --border-color: #e2e8f0;
    }
    .my-contact-wrapper { /* RENAMED WRAPPER */
        font-family: 'Poppins', sans-serif;
        background-color: #F5F7FA;
    }
    .my-contact-wrapper p {
        font-size: 15px;
        line-height: 1.8;
        color: var(--text-medium);
    }

    /* --- 1. Hero Section --- */
    .my-contact-wrapper .contact-hero {
        padding: 80px 5%;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }
    .my-contact-wrapper .contact-hero h1 {
        font-size: 2.8rem;
        font-weight: 700;
        color: var(--text-dark);
        margin: 0 0 15px 0;
    }
    .my-contact-wrapper .contact-hero .highlight {
        color: var(--primary-color);
    }

    /* --- 2. Guided Contact Options --- */
    .my-contact-wrapper .contact-options-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 900px;
        margin: 0 auto 80px auto;
        padding: 0 5%;
    }
    .my-contact-wrapper .contact-option-card {
        background-color: var(--bg-white);
        border: 1px solid var(--border-color);
        border-radius: 24px;
        padding: 40px;
        text-align: center;
        box-shadow: 0 4px 25px rgba(0,0,0,0.03);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .my-contact-wrapper .contact-option-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.07);
    }
    .my-contact-wrapper .contact-card-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 25px auto;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-image: linear-gradient(135deg, #e7f3ff, #f8f9fa);
    }
    .my-contact-wrapper .contact-card-icon svg { width: 28px; height: 28px; color: var(--primary-color); }
    .my-contact-wrapper .contact-option-card h3 {
        font-size: 1.5rem;
        margin: 0 0 10px 0;
        color: var(--text-dark);
    }
    .my-contact-wrapper .contact-option-card .cta-button {
        display: inline-block;
        margin-top: 25px;
        padding: 14px 35px;
        border-radius: 50px;
        background-color: var(--primary-color);
        color: var(--bg-white);
        text-decoration: none;
        font-weight: 600;
    }

    /* --- 3. "What to Expect" Section --- */
    .my-contact-wrapper .expectations-section {
        background-color: #eef2f7; /* A slightly different shade for contrast */
        padding: 80px 5%;
    }
    .my-contact-wrapper .expectations-container {
        max-width: 1000px;
        margin: 0 auto;
        text-align: center;
    }
    .my-contact-wrapper .expectations-container h2 { font-size: 2.2rem; color: var(--text-dark); margin-bottom: 50px; }
    .my-contact-wrapper .expectations-timeline {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        text-align: left;
    }
    .my-contact-wrapper .timeline-step { position: relative; }
    .my-contact-wrapper .timeline-step .step-number { font-size: 4rem; font-weight: 800; color: rgba(0,0,0,0.05); line-height: 1; margin-bottom: 10px; }
    .my-contact-wrapper .timeline-step h3 { font-size: 1.2rem; color: var(--text-dark); margin: 0 0 10px 0; }

    /* --- 4. FAQ Section --- */
    .my-contact-wrapper .contact-faq-section { padding: 80px 5%; }
    .my-contact-wrapper .contact-faq-container { max-width: 800px; margin: 0 auto; }
    .my-contact-wrapper .contact-faq-container h2 { text-align: center; font-size: 2.2rem; margin-bottom: 50px; color: var(--text-dark); }
    .my-contact-wrapper .faq-accordion { display: flex; flex-direction: column; gap: 15px; }
    .my-contact-wrapper .faq-item { background-color: var(--bg-white); border-radius: 12px; border: 1px solid var(--border-color); }
    .my-contact-wrapper .faq-question { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 20px; cursor: pointer; background: none; border: none; font-family: inherit; }
    .my-contact-wrapper .faq-item h3 { font-size: 1.1rem; margin: 0; color: var(--text-medium); font-weight: 600; text-align: left; }
    .my-contact-wrapper .faq-toggle { font-size: 1.6rem; transition: transform 0.3s ease; }
    .my-contact-wrapper .faq-item.active .faq-toggle { transform: rotate(45deg); }
    .my-contact-wrapper .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; text-align: left; }
    .my-contact-wrapper .faq-answer-content { padding: 0 20px 20px 20px; }

    /* --- Responsive --- */
    @media (max-width: 768px) {
        .my-contact-wrapper .contact-options-grid { grid-template-columns: 1fr; }
        .my-contact-wrapper .expectations-timeline { grid-template-columns: 1fr; }
    }
    
        
        /*title section*/
         .page-title-section {
    /* Sets the background color to a dark blue, matching your image. */
    background-color: #0A1F44; 
    
    /* Makes the section span the full width of the screen. */
    width: 100%;
    
    /* Sets a fixed height for the section as you requested. */
    height: 200px;
    
    /* Centers the content both horizontally and vertically. */
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-title-content {
    /* Centers the title and underline div within the section. */
    text-align: center;
}

.page-title-text {
    /* Sets the font color for the title to a bright blue. */
    color: #4b89ff;
    font-size: 45px;
    
    
    /* Removes any default margin to ensure it's positioned correctly. */
    margin-top: 0;
    margin-bottom: 0;
    
    /* Adds some letter-spacing to match the look in the image. */
    letter-spacing: 5px;
}

.page-title-underline {
    /* Styles the container for the dots and line. */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.dot {
    /* Styles the small dot elements. */
    height: 5px;
    width: 5px;
    background-color: #4b89ff;
    border-radius: 50%; /* Makes the dots circular. */
    margin: 0 2px; /* Adds space between the dots. */
}

.line {
    /* Styles the horizontal line. */
    height: 3px;
    width: 40px;
    background-color: #4b89ff;
    margin-left: 5px; /* Adds a bit of space between the dots and the line. */
}
