/* About Section */
.about-section {
  padding: 60px 20px;
  background-color: #e6f0ff;
  text-align: center;
  height: 55vh;
}

.about-section .container {
  max-width: 900px;
  margin: auto;
}

.about-section h2 {
  font-size: 2.5em;
  color: #004aad;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 1.1em;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
}
header {
  background: #2c3e50;
  padding: 15px 0;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 85%;
  margin: auto;
  height: 80px;
  font-size: large;
}
.logo {
  color: #fff;
  font-size: 1.5em;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
  color: #f1c40f;
}
footer {
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 15px 0;
  font-size: 0.9em;
}