:root {
  --primary: #0055a5;
  --accent: #f7c948;
  --light: #fafafa;
  --text: #333;
  --muted: #555;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--light);
  margin: 0;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  background: linear-gradient(120deg, #004aad, #0084ff);
  color: white;
  text-align: center;
  padding: 6rem 1rem;
  position: relative;
}

.hero .overlay {
  max-width: 800px;
  margin: auto;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
}

/* Sections */
.section {
  padding: 4rem 1.5rem;
  max-width: 1100px;
  margin: auto;
}

.section h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.alt {
  background: white;
  border-radius: 20px;
  margin: 2rem auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Objectives List */
.objectives {
  list-style: none;
  padding-left: 0;
}

.objectives li {
  background: #fff;
  margin: 0.6rem 0;
  padding: 1rem;
  border-left: 5px solid var(--accent);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Highlight section (vision/mission) */
.highlight {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 1rem;
  background: linear-gradient(120deg, #f7c948, #ffd369);
  color: #333;
}

.highlight div {
  flex: 1 1 300px;
  max-width: 400px;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Cards layout */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
}

/* Contact */
.contact {
  text-align: center;
}

.contact .quote {
  margin-top: 1.5rem;
  font-style: italic;
  color: var(--muted);
}

/* Footer */
footer {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 1rem;
}
