  /*a css for contact us page */
            :root {
            --bg-green: #106c43;
            --card-bg: #d5ffe2;
            --primary-dark: #1e5d44;
            --accent-yellow: #fdbf2d;
            --text-color: #103c29;
            --max-width: 1000px; /* New max-width for main content */
        }

body {
    font-family: Arial, sans-serif;
    background-color:#167544;
    color:#f5be0b;
    text-align: center;
    margin: 2;
    padding: 2;
}
 /* Header */
        header {
             width: 80%;
            background-color: var(--card-bg); /* Using a lighter green for header */
            padding: 15px 20px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 800;
            margin: 40px auto;
            border-radius: 40px;

        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 50px;
            margin-left: 50px; /* Adjust as per screenshot */
        }

        .logo {
           
            width: 127px;
            height:40px;
            display: flex;
            justify-content: center;
            align-items: center;
            background:url('logo1.png');
        }

        .header-button {
            background-color: var(--bg-green); /* Using bg-green for header button */
            color:  #fdbf2d; /* Using card-bg for text */
            border: none;
            padding: 8px 18px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            transition: background-color 0.3s ease;
            
        }

        .header-button:hover {
            background-color: var(--primary-dark);
        }

        nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            gap: 25px;
            margin-right: 50px; /* Adjust as per screenshot */
        }

        nav ul li a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 600;
            transition: color 0.3s ease;
        }

        nav ul li a:hover {
            color: var(--bg-green);
        }



h1 {
    font-size: 2rem;
}

.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    width: 80%;
    max-width: 900px;
    background: #d0ffdc;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px #167544;
    color: #103c29;
}

.contact-form {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-right: 4%;
}
.contact-form input,
.contact-form textarea {
    width: 100%; /* Ensures full width */
    background: #167544;
    border: none;
    color: #f5be0b;
    padding: 15px;
    margin: 0; /* Remove conflicting vertical spacing */
    border-radius: 5px;
    font-size: 1rem;
   
}


.contact-form button {
    background: #f5be0b;
    color: #0e921d;
    border: none;
    padding: 15px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.contact-info {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    margin: 0 10px;
}



/* --- Keep your existing Header and Toggle CSS as is mobile version --- */
/* Header */
header {
    width: 80%;
    background-color: var(--card-bg);
    padding: 15px 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 800;
    margin: 40px auto;
    border-radius: 40px;
}

/* Regular Navigation (hide on mobile by default) */
header nav {
    display: block;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

header nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: var(--bg-green);
}


/* Mobile Menu Elements - HIDDEN by default on desktop */
.mobile-menu-toggle,
.mobile-menu-overlay,
.mobile-menu,
.mobile-page-title { /* Added .mobile-page-title here */
    display: none;
}