
/* ===============================
   Global Styles & Layout Resets
   =============================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #111;
  line-height: 1.6;
}

/* ===============================
   Sticky Header
   =============================== */
header {
  background-color: #1c2b37;
  color: white;
  text-align: center;
  padding: 20px 10px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Header Typography */
header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

header p {
  font-style: italic;
  font-size: 0.95rem;
  max-width: 900px;
  margin: 0 auto;
}

/* ===============================
   Main Content Container
   =============================== */
main {
  max-width: 850px;
  margin: 0 auto;
  padding: 30px 20px 40px 20px;
}

/* ===============================
   Call to Action Box
   =============================== */
.cta-container {
  background-color: #e6f7ff;
  padding: 18px;
  text-align: center;
  font-weight: bold;
  margin: 30px auto 40px auto;
  max-width: 700px;
  border-radius: 8px;
  color: #111;
}

.cta-container a {
  color: #0047ab;
  text-decoration: underline;
}

/* ===============================
   Section Cards
   =============================== */
section {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

/* Headings in Services */
section h2 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  font-weight: 700;
}

section p {
  text-indent: 2em;
}

/* ===============================
   Footer Styles
   =============================== */
footer {
  background-color: #1c2b37;
  color: white;
  padding: 20px;
  text-align: center;
  font-size: 0.95rem;
}

footer a {
  color: #87cefa;
  text-decoration: underline;
}

/* ===============================
   Responsive Design
   =============================== */
@media (max-width: 600px) {
  header h1 {
    font-size: 1.6rem;
  }

  .cta-container {
    padding: 15px;
    font-size: 0.95rem;
  }

  section h2 {
    font-size: 1.2rem;
  }

  section p {
    font-size: 0.95rem;
  }
}
