/* Updated CSS with improved hero text readability */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f7f7f7;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

header {
  background: white;
  padding: 20px 0;
  border-bottom: 2px solid #e5e5e5;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  max-height: 60px;
  width: auto;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #02538f;
  font-weight: 600;
}

nav a:hover {
  color: #47a935;
}

.hero-bg {
  background: url("images/hero-bg.png") center center/cover no-repeat;
  text-align: center;
  padding: 100px 20px;
}

.hero-text {
  background-color: rgba(255, 255, 255, 0.75); /* translucent white */
  display: inline-block;
  padding: 15px 25px;
  border-radius: 8px;
  margin-top: 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.buttons {
  margin-top: 20px;
}

.btn {
  padding: 12px 25px;
  margin: 5px;
  border: none;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  display: inline-block;
}

.btn.primary {
  background-color: #02538f;
  color: white;
}

.btn.secondary {
  background-color: white;
  color: #02538f;
  border: 2px solid #02538f;
}

section {
  padding: 60px 20px;
  background-color: white;
  text-align: center;
}

section:nth-child(even) {
  background-color: #f0f4f8;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  max-width: 300px;
  flex: 1 1 250px;
}

blockquote {
  font-size: 1.2rem;
  font-style: italic;
}

footer {
  background: #02538f;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  nav a {
    display: inline-block;
    margin: 10px 10px 0 0;
  }

  .buttons {
    flex-direction: column;
  }
}
.icon-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.icon-card {
  background: white;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  max-width: 250px;
  text-align: center;
  flex: 1 1 200px;
  transition: transform 0.2s ease;
}

.icon-card:hover {
  transform: translateY(-5px);
}

.icon-card i {
  font-size: 40px;
  color: #02538f;
  margin-bottom: 15px;
}

.icon-card h4 {
  font-size: 1.2rem;
  color: #02538f;
  margin-bottom: 10px;
}

.icon-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .icon-cards {
    flex-direction: column;
    align-items: center;
  }
}
