/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    text-align: center;
    padding: 20px;
    background-color: #222;
    color: white;
    position: relative;
}

.logo {
    width: 100px;
    max-width: 100%;
}

h1 {
    font-size: 2rem;
    margin-top: 20px;
    font-weight: bold;
}

nav {
    margin-top: 20px;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    margin: 10px 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ffb3b3;
}

/* About Us Section */
.about-us {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 50px 20px;
    background-color: #fff;
}

.text-container {
    flex: 1;
    padding: 20px;
}

.text-container h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.text-container p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.image-container {
    flex: 1;
    text-align: center;
    padding: 20px;
}

.about-image {
    width: 100%;
    max-width: 600px; /* Adjusted for better mobile layout */
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #222;
    color: white;
    margin-top: 30px;
}

footer p {
    font-size: 1rem;
    font-weight: 400;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 1.5rem;
        margin-top: 10px;
    }

    nav ul li {
        margin: 5px 10px;
    }

    nav ul li a {
        font-size: 0.9rem;
    }

    .about-us {
        flex-direction: column;
        text-align: center;
    }

    .text-container {
        padding: 10px;
    }

    .text-container h2 {
        font-size: 2rem;
    }

    .text-container p {
        font-size: 1rem;
    }

    .image-container {
        padding: 10px;
    }

    .about-image {
        max-width: 300px;
    }

    footer p {
        font-size: 0.9rem;
    }
}
