    /* Navigation */
    nav {
        background: var(--white);
        padding: var(--spacing-sm);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .nav-links {
        display: flex;
        justify-content: center;
        gap: var(--spacing-md);
    }

    .nav-links a {
        text-decoration: none;
        color: var(--text-color);
        text-transform: uppercase;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }

    .hero-banner {
        width: 100%;
        position: relative;
        overflow: hidden;
    }

    .hero-banner__container {
        width: 100%;
        height: 680px;
        /* Adjust this value to your needs */
        position: relative;
    }

    .hero-banner__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .hero-banner__container {
            height: 300px;
            /* Smaller height for tablets */
        }
    }

    @media (max-width: 480px) {
        .hero-banner__container {
            height: 200px;
            /* Even smaller height for mobile */
        }
    }

    /* Contact Us Layout */
    .contact-container {
        max-width: 1200px;
        margin: 40px auto;
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 40px;
        padding: 0 20px;
    }

    /* Get in Touch Section */
    .get-in-touch {
        background: #4d4da5;
        padding: 30px;
        border-radius: 20px;
        color: #fff;
        box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.4);
        font-family: 'Rushford Clean';
    }

    .get-in-touch h2 {
        margin-bottom: 30px;
        font-size: 2.5rem;
        text-transform: uppercase;
    }

    .contact-info {
        list-style: none;
        padding: 0;
    }

    .contact-info li {
        font-size: 1.2rem;
        margin-bottom: 43px;
        padding-left: 0;
    }

    /* Write Us Section */
    .write-us {
        padding: 20px;
    }

    .write-us h2 {
        color: #4d4da5;
        margin-bottom: 30px;
        font-size: 2.5rem;
        text-transform: uppercase;
        font-family: 'Rushford Clean';
    }

    .write-us form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    input,
    textarea {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        background-color: #f5f5f5;
        font-size: 1rem;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: bold;
    }

    textarea {
        resize: vertical;
        min-height: 150px;
    }

    .submit-btn {
        background: #4d4da5;
        color: white;
        padding: 4px 30px;
        border: none;
        border-radius: 22px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        font-size: 1.0rem;
        text-transform: uppercase;
        width: 120px;
        box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.4);
        font-family: Arial, Helvetica, sans-serif;
        font-weight: bold;

    }

    .submit-btn:hover {
        background: #3c3c8c;
    }

    /* Map Section */
    .map-container {
        margin: 40px auto;
        padding: 26px 20px;
        max-width: 1200px;
    }

    .map-container iframe {
        width: 100%;
        height: 400px;
        border-radius: 15px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .contact-container {
            grid-template-columns: 1fr;
        }

        .form-row {
            grid-template-columns: 1fr;
        }

        .nav-links {
            flex-wrap: wrap;
            justify-content: flex-start;
            gap: var(--spacing-sm);
        }
    }