/* ===============================
   GLOBAL RESET
================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: linear-gradient(135deg, #eef3ff, #f8faff);
  color: #222;
  line-height: 1.8;
}

/* ===============================
   HERO HEADER
================================= */
.hero {
  width: 100%;
  background: linear-gradient(135deg, #003f8a, #0077ff);
  color: #ffffff;
  padding: 120px 20px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -250px;
  left: -250px;
}

.hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  bottom: -200px;
  right: -150px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #ffffff;
  margin: 18px auto 0;
  border-radius: 3px;
}

.hero p {
  font-size: 18px;
  opacity: 0.95;
}

/* ===============================
   BACK BUTTON
================================= */
.back-home {
  position: absolute;
  top: 25px;
  left: 30px;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 20px;
  transition: all 0.3s ease;
  z-index: 3;
}

.back-home:hover {
  background: #ffffff;
  color: #003f8a;
}

/* ===============================
   CONTENT SECTION
================================= */
.content-section {
  padding: 60px 20px 100px;
}

.container {
  max-width: 950px;
  margin: 0 auto;
  padding: 60px 70px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 60, 150, 0.08);
}

/* ===============================
   HEADINGS
================================= */
h2 {
  font-size: 26px;
  color: #003f8a;
  margin-top: 45px;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #0077ff;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 3px;
}

h3 {
  font-size: 20px;
  color: #004a9f;
  margin-top: 30px;
  margin-bottom: 10px;
}

/* ===============================
   PARAGRAPHS
================================= */
p {
  font-size: 16.5px;
  margin-bottom: 18px;
  color: #444;
  text-align: justify;
}

/* ===============================
   LISTS
================================= */
ul {
  margin-left: 30px;
  margin-bottom: 25px;
}

li {
  margin-bottom: 10px;
  font-size: 16px;
  padding-left: 4px;
}

/* ===============================
   LINKS
================================= */
a {
  color: #0077ff;
  text-decoration: none;
  transition: 0.3s ease;
}

a:hover {
  text-decoration: underline;
}

/* ===============================
   RESPONSIVE DESIGN
================================= */
@media (max-width: 992px) {

  .hero {
    padding: 100px 20px 80px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .container {
    padding: 45px 35px;
  }
}

@media (max-width: 600px) {

  .hero {
    padding: 80px 15px 60px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
  }

  .container {
    padding: 30px 20px;
    border-radius: 12px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 18px;
  }

  p, li {
    font-size: 15px;
  }

  .back-home {
    top: 15px;
    left: 15px;
    font-size: 13px;
    padding: 5px 10px;
  }
}