/* General & Body */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #444;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: #5d4037;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-logo img {
    height: 50px;
}

/* Navigation Links (Desktop) */
.header-nav a {
    text-decoration: none;
    color: #fffdfd;
    margin-left: 30px;
    font-size: 0.9em;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Menu Toggle (Burger Icon) */
.menu-toggle {
    display: none; /* Hidden by default on desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 5px;
}

.one {
    background-color: #5d4037;
    color: #fff;
    justify-content: space-between;
    padding: 25px 50px;
    margin-top: 20px;
    margin-bottom: 371px;
    margin-left: 60px;
    margin-right: 60px;
}
.one p{
    margin-left: 50px;
    margin-right: 50px;
    text-align: justify;
}


/* Footer */
.footer {
    background-color: #5d4037;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    font-size: 0.9em;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons img {
    width: 30px;
    height: 30px;
    border-radius: 50%; 
}

/* ================================================= */
/* RESPONSIVE DESIGN (Media Queries)     */
/* ================================================= */

/* Tablet and Smaller Devices (max-width: 768px) */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .header-nav {
        display: none; /* Hide nav by default */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px; /* Adjust based on header height */
        left: 0;
        background-color: #5d4037;
        padding: 10px 0;
        text-align: center;
    }

    .header-nav.show-menu {
        display: flex;
    }

    .header-nav a {
        margin: 10px 0;
        color: #fff;
    }

    .menu-toggle {
        display: flex; /* Show burger icon on small screens */
    }

    .hero-banner {
        height: 250px;
        margin: 0 20px 30px;
    }

    .card-section {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin: 0 20px 40px;
    }

    .card {
        width: 100%;
        max-width: 300px;
        height: auto;
    }

    .button-section {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 80%;
        margin: 0 auto;
    }

    .footer {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-right {
        flex-direction: column;
        gap: 20px;
    }
}