/* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f4f4;
  color: #1a1a1a;
  padding: 40px 20px;
  text-align: center;
}

/* Logo */
.logo {
  max-width: 600px;
  margin: 0 auto 20px;
}

/* Headings */
h1 {
  font-size: 2.5em;
  color: #003366;
  margin-bottom: 10px;
}
h2 {
  font-size: 1.5em;
  color: #0077b6;
  margin-bottom: 30px;
}
h3 {
  font-size: 1.2em;
  color: #003366;
  margin-bottom: 10px;
}

/* Sections */
.section {
  max-width: 600px;
  margin: 0 auto 40px;
}
.section ul {
  list-style: none;
  padding: 0;
}
.section li {
  margin: 8px 0;
  font-size: 1em;
}

/* Call to Action */
.cta-button {
  background-color: #0077b6;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: 1em;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}
.cta-button:hover {
  background-color: #005f8f;
}

/* Footer */
footer {
  margin-top: 40px;
  font-size: 0.9em;
  color: #555;
}
.social-links a {
  margin: 0 10px;
  color: #0077b6;
  text-decoration: none;
}
.social-links a:hover {
  text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  h1 {
    font-size: 2em;
  }
  h2 {
    font-size: 1.2em;
  }
  .cta-button {
    width: 100%;
    padding: 14px;
  }
}