* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background-color: #004080;
  color: #fff;
}

.logo {
  font-size: 1.8em;
  font-weight: 600;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ff9933;
}

/* Hero Section */
.about-hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
              url('img14.jpg') center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 20px;
}

.hero-content h2 {
  font-size: 2.5em;
}

.hero-content p {
  font-size: 1.2em;
  margin-top: 10px;
}

/* About Content */
.about-section {
  padding: 60px 12%;
  background-color: #f7f9fc;
}

.content-wrapper h3 {
  font-size: 1.8em;
  color: #004080;
  margin-bottom: 10px;
  margin-top: 40px;
}

.content-wrapper p,
.content-wrapper li {
  font-size: 1.1em;
  color: #333;
  margin-bottom: 15px;
}

.content-wrapper ul {
  margin-left: 20px;
  list-style: none;
}

.content-wrapper ul li::before {
  content: "➤";
  color: #ff9933;
  margin-right: 10px;
}

.cta-button {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 28px;
  background-color: #004080;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #003060;
}

/* Footer */
footer {
  background-color: #004080;
  color: white;
  text-align: center;
  padding: 20px 10%;
  margin-top: 60px;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.footer-container .socials img {
  width: 24px;
  margin: 0 8px;
  filter: brightness(0) invert(1);
  transition: transform 0.2s;
}

.footer-container .socials img:hover {
  transform: scale(1.2);
}
