/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #111;
  }
  
  .logo img {
    width: 100px;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
  }
  
  .nav-links li {
    margin-left: 20px;
  }
  
  .nav-links a {
    color: #fff;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #e2b878;
  }

/* About Section */
#about {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(to bottom, #e2b878, #333);
    color: #fff;
}

#about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

#about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

#about img {
    max-width: 100%;
    border-radius: 10px;
    margin-top: 30px;
}

/* Mission Section */
#mission {
    padding: 60px 20px;
    background: linear-gradient(to bottom, #333, #444);
    color: #fff;
    text-align: center;
}

#mission h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

#mission p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ddd;
}

#mission img {
    max-width: 100%;
    border-radius: 10px;
    margin-top: 30px;
}

/* Core Values Section */
#values {
    padding: 60px 20px;
    background: linear-gradient(to bottom, #444, #333);
    color: #fff;
    text-align: center;
}

#values h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.values-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.value-item {
    background-color: #555;
    padding: 20px;
    border-radius: 10px;
    max-width: 250px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #e2b878;
}

.value-item p {
    color: #ddd;
}

/* Team Section */
#team {
    padding: 60px 20px;
    background-color: #333;
    color: #fff;
    text-align: center;
}

#team h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.team-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.team-member {
    background-color: #444;
    padding: 30px;
    border-radius: 10px;
    max-width: 300px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.team-member img {
    border-radius: 50%;
    margin-bottom: 20px;
    width: 120px;
    height: 120px;
}

.team-member h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.team-member p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #e2b878;
}

.team-member p:last-child {
    font-size: 1rem;
    color: #ddd;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #111;
    color: #fff;
    font-size: 0.9rem;
}

/* Mobile Styles for Navbar */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        flex-direction: column;
        margin-top: 10px;
    }

    .nav-links li {
        margin-left: 0;
        margin: 10px 0;
    }

    #about img,
    #mission img,
    #values .value-item,
    .team-member img {
        max-width: 100%;
    }

    .values-container,
    .team-container {
        flex-direction: column;
        align-items: center;
    }

    .team-member,
    .value-item {
        max-width: 90%; /* Adjust width on mobile */
    }
}
