body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  line-height: 1.6;
  color: #333;
  background: #f9fafb;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

h1, h2 {
  color: #0F766E; /* Teal corporate color */
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.hero {
  position: relative;
  background: linear-gradient(135deg, #0F766E, #0d5c55); /* gradient teal */
  color: #fff;
  text-align: center;
  padding: 60px 20px; /* reduced from 100px */
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2); /* subtle overlay for depth */
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-family: 'Montserrat', 'Arial Black', Impact, sans-serif;
  font-size: 2.5rem; /* smaller for better balance */
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3; /* tighter line spacing */
  color: #ffffff;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.2s;
}

.hero p {
  font-size: 1rem; /* smaller font size */
  line-height: 1.5;
  max-width: 650px;
  margin: 0 auto;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.5s;
}


/* Optional: Fade-in-up animation */
.hero h1, .hero p {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

.hero h1 {
  animation-delay: 0.2s;
}

.hero p {
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.section {
  background: #fff;
}

.section.alt {
  background: #f1f5f9; /* light gray for contrast */
}

ul, ol {
  margin: 0;
  padding-left: 20px;
  
}

a {
  color: #0F766E;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
