* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background: #f9f9f9;
}

/* Navbar */
.navbar {
  background-color: #2b2b2b;
  padding: 1rem 2rem;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .logo {
  font-size: 1.5rem;
}

.primary-color {
  color: #ffd369;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.navbar a.active,
.navbar a:hover {
  color: #ffd369;
  border-bottom: 2px solid #ffd369;
}

/* Header */
.about-header {
  background: url('images/about-bg.jpg') center/cover no-repeat;
  background-color: rgba(0,0,0,0.5);
  background-blend-mode: overlay;
  color: white;
  padding: 6rem 2rem;
  text-align: center;
}

.about-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-header p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* About Section */
.about-section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: auto;
}

.about-text {
  margin-bottom: 2rem;
}

.about-text h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.about-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 4rem 2rem;
  background-color: #fff;
  text-align: center;
}

.team-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.team-card {
  background: #fefefe;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.team-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.team-card p {
  color: #666;
  font-size: 0.95rem;
}

/* Footer */
.footer {
  background-color: #2b2b2b;
  color: #ccc;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 2rem;
}
