/* Main styles */
body {
  background-color: #fafafa;
  color: #333;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #2c5282;
  text-align: center;
  position: relative;
}

h2:after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #4299e1;
  margin: 0.75rem auto;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #2d3748;
}

p {
  margin-bottom: 1rem;
  color: #4a5568;
}

section {
  padding: 5rem 0;
}

section:nth-child(even) {
  background-color: #f7fafc;
}

.cta-button {
  display: inline-block;
  background-color: #4299e1;
  color: white;
  font-weight: 500;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
  background-color: #3182ce;
  transform: translateY(-2px);
}

.cta-button:active {
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.1rem;
  }
  
  section {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1rem;
  }
  
  .container {
    padding: 0 1rem;
  }
}