   :root {
            --primary-color: #076126;
            --secondary-color: #A0522D;
            --accent-color: #076126;
            --light-color: #07610d;
            --dark-color: #ffffff;
            --text-color: #0a0a0a;
            --white: #fff;
        }


/* Override for anchor tags styled as buttons */
a.btn:hover,
a.btn:focus,
a.btn:active {
    color: #ffffff !important;
    background-color: #09f949 !important;
    border-color: #09f949 !important;
    text-decoration: none !important;
}

.main-header {
    background-color: #fff;
}

.top-bar {
    background-color: #076126; /* Dark green background */
    color: #fff;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 8px 50px;
    font-size: 14px;
}

.contact-info span {
    margin-left: 20px;
}

.contact-info i {
    margin-right: 5px;
}

.social-icons {
    margin-left: 20px;
}

.social-icons a {
    color: #fff;
    text-decoration: none;
    margin-left: 15px;
    font-size: 16px;
}

.logo-bar {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    position: relative;
    background-color: #f7f7f7; /* Background color for the logo section */
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px; /* Adjust as needed */
    margin-right: 20px;
}

.logo-text h1 {
    font-size: 24px;
    margin: 0;
    color: #1e6040;
    font-weight: bold;
}

.logo-text h2 {
    font-size: 16px;
    margin: 0;
    color: #555;
    font-weight: normal;
}



/* --- Responsive Media Queries --- */

/* For Tablets (screen width up to 768px) */
@media (max-width: 768px) {
    .top-bar, .logo-bar {
        padding: 8px 20px;
    }

    .top-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-info {
        margin-bottom: 8px;
    }
    
    .contact-info span {
        display: block; /* Stacks the phone and email vertically */
        margin: 5px 0;
    }

    .social-icons {
        margin-left: 0;
    }

    .logo {
        flex-direction: column;
        text-align: center;
    }

    .logo img {
        height: 70px;
        margin: 0 0 10px 0;
    }

    .logo-text h1 {
        font-size: 20px;
    }

    .logo-text h2 {
        font-size: 14px;
    }
}

/* For Mobile Phones (screen width up to 480px) */
@media (max-width: 480px) {
    .top-bar, .logo-bar {
        padding: 8px 10px;
    }

    .contact-info, .social-icons {
        font-size: 12px;
    }

    .logo img {
        height: 60px;
    }

    .logo-text h1 {
        font-size: 18px;
    }

    .logo-text h2 {
        font-size: 12px;
    }
}
        
    *{
        padding: 0px;
        margin: 0px;
    }



