/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #b1e3f8;
    color: #222;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navbar Styles */
header {
    background-color: #111;
    padding: 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

nav a {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #FFD700;
}

nav .active {
    color: #FFD700;
}

/* About Us Section */
.about-us {
    padding: 50px 20px;
    background-color: #f4f4f4;
    color: #222;
    text-align: center;
}

.about-us .container {
    max-width: 900px;
    margin: 0 auto;
}

.about-us h1 {
    font-size: 36px;
    color: #111;
    margin-bottom: 20px;
}

.about-us .intro-text {
    font-size: 22px;
    margin-bottom: 30px;
    color: #333;
}

.about-us .intro-text span {
    color: #bc3703;
    font-weight: bold;
}

.about-us .content {
    text-align: left;
    margin-top: 40px;
}

.about-us h2 {
    font-size: 28px;
    color: #111;
    margin-bottom: 15px;
}

.about-us p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(22, 20, 20, 0.7);
}

.about-us ul {
    list-style: none;
    padding: 0;
}

.about-us li {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Footer Styles */
footer {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 15px;
    position: relative;
}

footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

footer p {
    margin: 0;
    font-size: 14px;
}
