/* GENERAL STYLES */
body {
  font-family: 'DM Sans', sans-serif;
  margin: 0;
  background-color: #f9fbff;
  color: #333;
  line-height: 1.6;
}

header.header {
  background: #005eb8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  height: 50px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.nav-link:hover {
  opacity: 0.8;
}

.btn-download {
  background: #fff;
  color: #005eb8;
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-download:hover {
  background: #d9e8ff;
}

/* ABOUT HERO */
.about-hero {
  background: linear-gradient(135deg, #005eb8, #0078d4);
  color: #fff;
  text-align: center;
  padding: 5rem 1.5rem;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.about-hero p {
  font-size: 1.2rem;
  color: #d9e8ff;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* SECTION STYLES */
section {
  padding: 4rem 1.5rem;
  background: #fff;
}

section:nth-of-type(even) {
  background: #f7f9fb;
}

h2 {
  color: #005eb8;
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}

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

p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1.2rem;
}

/* VALUES LIST */
.values-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
  text-align: left;
}

.values-list li {
  background: #eef4fc;
  border-left: 4px solid #005eb8;
  padding: 1rem 1.2rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.values-list li strong {
  color: #005eb8;
}

/* TEAM SECTION */
.team {
  text-align: center;
}

.team-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.06);
  margin-top: 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.team-img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #005eb8;
}

.team-info {
  text-align: left;
  max-width: 520px;
}

.team-info h3 {
  color: #005eb8;
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
}

.team-info .role {
  display: block;
  font-size: 0.95rem;
  color: #777;
  margin-top: 4px;
}

.team-info p {
  color: #444;
  line-height: 1.6;
  margin-top: 0.5rem;
}

/* FOOTER */
.footer {
  background: #005eb8;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 3rem;
}

.footer-content p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

.footer-content .disclaimer {
  color: #d9e8ff;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.2rem;
  }
  .team-card {
    flex-direction: column;
    text-align: center;
  }
  .team-info {
    text-align: center;
  }
  .nav-links {
    flex-direction: column;
    gap: 1rem;
  }
  .btn-download {
    padding: 0.6rem 1rem;
  }
}
