* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #1F2937;
}

.hero {
  background-color: #1F2937;
  color: #F9FAF8;
  padding: 20px 0 50px;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  width: 30px;
  height: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #E5E7EB;
  font-size: 18px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #3882F6;
}

.about-content {
  margin: 40px auto;
  max-width: 800px;
  padding: 0 15px;
}

.about-content h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  color: #1F2937;
}

.about-content h3 {
  font-size: 24px;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #3882F6;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-mission,
.about-team,
.about-history {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

footer {
  background-color: #1F2937;
  color: #f1f1f1;
  padding: 20px 0;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.bottom-text {
  margin-bottom: 5px;
  font-size: 14px;
}

.nav-links-footer {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
  gap: 20px;
}

.nav-links-footer a {
  color: #f1f1f1;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links-footer a:hover {
  color: #4A90E2;           
}
