/* Scroll animations are defined in assets/css/main.css */

    /* Contact 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: 42px;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.2;
        color: #1A365D;
    }

    .page-hero p {
        font-size: 20px;
        color: #4A5568;
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-section {
        padding: 80px 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        margin-bottom: 80px;
    }

    .appointment-animation-container {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .appointment-animation-box {
        width: 100%;
        max-width: 400px;
        background-color: transparent;
        transition: all 0.3s ease;
    }

    .appointment-animation-box:hover {
        transform: translateY(-5px);
    }

    .appointment-animation-box img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .contact-info h2 {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 24px;
        font-weight: 700;
        color: #1A365D;
        margin-bottom: 30px;
    }

    .info-box {
        background-color: transparent;
        padding: 30px;
        border-radius: 15px;
        margin-bottom: 25px;
        transition: all 0.3s ease;
    }

    .info-box:hover {
        transform: translateY(-5px);
    }

    .info-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;
    }

    .info-item:last-child {
        margin-bottom: 0;
    }

    .info-icon {
        font-size: 18px;
        min-width: 35px;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #3182CE;
        border-radius: 50%;
        flex-shrink: 0;
        transition: background-color 0.3s ease;
        margin-top: 2px;
    }

    .info-icon:hover {
        background-color: #63B3ED;
    }

    .info-icon svg {
        flex-shrink: 0;
        width: 18px;
        height: 18px;
        fill: #FFFFFF;
    }

    .info-content h3 {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 18px;
        font-weight: 600;
        color: #1A365D;
        margin-bottom: 8px;
    }

    .info-content p {
        color: #333;
        font-size: 15px;
        line-height: 1.7;
    }

    .info-content a {
        color: #000000 !important;
        text-decoration: none;
        font-weight: 700;
        font-size: 16px;
        opacity: 1;
        transition: color 0.3s ease;
    }

    .info-content a:hover {
        color: #000000 !important;
        text-decoration: none;
        opacity: 1;
    }

    .map-container {
        margin-top: 80px;
    }

    .map-container h2 {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 24px;
        font-weight: 700;
        color: #1A365D;
        text-align: center;
        margin-bottom: 40px;
    }

    .map-embed {
        width: 100%;
        max-width: 900px;
        height: 450px;
        border: 0;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(26, 54, 93, 0.12);
        margin: 0 auto;
        display: block;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .contact-grid {
            grid-template-columns: 1fr;
            gap: 50px;
        }

        .appointment-animation-box {
            max-width: 350px;
        }
    }

    @media (max-width: 768px) {
        .page-hero {
            padding: 60px 20px;
        }

        .page-hero h1 {
            font-size: 28px;
        }

        .page-hero p {
            font-size: 16px;
        }

        .contact-section {
            padding: 50px 20px;
        }

        .contact-info h2,
        .map-container h2 {
            font-size: 20px;
        }

        .appointment-animation-box {
            max-width: 100%;
        }

        .info-box {
            padding: 25px 20px;
        }

        .map-embed {
            width: 100%;
            max-width: 100%;
            height: 320px;
            border-radius: 12px;
        }
    }
