/* General Styles */
body {
    background: url('https://images.unsplash.com/photo-1738746819119-9f633966f43b?q=80&w=1402&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #E9F1FA;
}

header {
    background-color: #c0392b;
    color: #fff;
    padding: 20px;
    text-align: center;
}

header .logo h1 {
    margin: 0;
    font-size: 2.5rem;
}

header .logo p {
    margin: 5px 0 0;
    font-size: 1rem;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* About Us Section */
.about-us {
    padding: 20px;
    text-align: center;
}

.about-us h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.about-section {
    margin-bottom: 40px;
}

.about-section h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #000000;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #000000;
}

.about-section ul {
    list-style: disc;
    padding-left: 20px;
}

.about-section ul li {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 10px;
}

/* Team Section */
.team-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.team-member {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 20px;
    width: 250px;
    margin: 10px;
    text-align: center;
}

.team-member img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-member h4 {
    margin: 10px 0;
    font-size: 1.5rem;
    color: #000000;
}

.team-member p {
    margin: 5px 0;
    color: #000000;
}

/* Footer */
footer {
    background-color: #c0392b;
    color: #fff;
    text-align: center;
    padding: 10px;
    margin-top: 20px; 
}