/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background: #f5f5f5;
  color: #333;
}

/* Header */
header {
  background: linear-gradient(135deg, #1e40af 0%, #0f766e 100%);
  color: #fff;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

header p {
  font-size: 1.2rem;
  opacity: 0.95;
}

header p a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

header p a:hover {
  color: #ffd700;
  text-decoration: underline;
}

header .header-link {
  font-size: 1rem;
  display: inline-block;
  margin-top: 1rem;
}

/* Main Content */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

section {
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

section:hover {
  box-shadow: 0 8px 16px rgba(30, 64, 175, 0.15);
  transform: translateY(-2px);
}

section h2 {
  font-size: 2rem;
  color: #1e40af;
  margin-bottom: 1.5rem;
  border-bottom: 3px solid #1e40af;
  padding-bottom: 0.5rem;
}

section ul {
  list-style: none;
  margin-top: 1rem;
}

section ul li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #555;
  font-size: 1.05rem;
}

section ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0f766e;
  font-weight: bold;
  font-size: 1.2rem;
}

section p {
  color: #555;
  font-size: 1rem;
  margin: 0.5rem 0;
}

section a {
  color: #1e40af;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

section a:hover {
  color: #0f766e;
  text-decoration: underline;
}

/* Contact Section Styling */
#contact-info {
  background: linear-gradient(135deg, #f0f9ff 0%, #f0fdf4 100%);
  border-left: 4px solid #0f766e;
}

#contact-info p {
  font-size: 1.1rem;
  margin: 1rem 0;
}

#contact-info a {
  color: #1e40af;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

#contact-info a:hover {
  color: #0f766e;
}

/* Footer */
footer {
  background: #1e3a8a;
  color: #fff;
  text-align: center;
  padding: 2rem;
  margin-top: 3rem;
}

footer p {
  font-size: 0.95rem;
  opacity: 0.9;
}

footer a {
  color: #ffd700;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #fff;
  text-decoration: underline;
}

footer .footer-link {
  font-weight: 600;
}

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

  header p {
    font-size: 1rem;
  }

  section {
    padding: 1.5rem;
  }

  section h2 {
    font-size: 1.5rem;
  }

  main {
    padding: 1rem;
  }
}
