body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f2f3f4;
}

main {
  padding-top: 40px;  /* match your nav’s height */
}

.subtitle {
  font-size: .9rem;
  font-weight: 600;
  color: #d0b81c;
  text-transform: uppercase;
  margin-bottom: .5rem;
}


.cta-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.cta-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  max-width: 500px;
}

.cta-content {
  flex: 1;
  min-width: 300px;
}

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #003b7c;
}

.cta-content p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #003b7c;
  color: #fff;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #d0b81c;
}


/* Card styling */

