body {
  font-family: 'Open Sans', sans-serif;
  background-color: #f8f9fa;
  color: #222;
  margin: 0;
  padding: 0;
}

.container,
.centered-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.hero-section {
  background-color: #1b4332;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  padding: 20px;
  gap: 10px;
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0 0 10px 0;
}

.hero-section p {
  margin: 0 0 20px 0;
  max-width: 700px;
  padding: 0 15px;
  line-height: 1.6;
}

.button,
a.button,
.schedule-button {
  background-color: #2d6a4f;
  color: white !important;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  display: inline-block;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin-top: 15px;
}

.button:hover,
a.button:hover,
.schedule-button:hover {
  background-color: #218838;
}

h2 {
  color: #1b4332;
  text-align: center;
  margin: 40px 0 20px;
}

ul {
  padding-left: 20px;
}

/* ✅ Fix for footer text under review quotes */
.review-block footer {
  color: #ffffff;
  font-style: italic;
  text-align: center;
  padding: 10px 0;
}

/* Footer Section */
footer {
  background-color: #1b4332;
  color: white;
  text-align: center;
  padding: 30px 15px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
}

/* Mobile styles */
@media (max-width: 768px) {
  .hero-section {
    padding: 25px 15px;
  }

  .hero-content {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    height: auto;
    overflow: visible;
    padding: 0 15px;
  }

  .hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-title h1 {
    font-size: 2rem;
    margin: 10px 0;
  }

  .iicrc-logo {
    display: block;
    margin: 0 auto 10px auto;
    max-width: 120px;
  }

  .hero-title p {
    font-size: 1rem;
    padding: 0 15px;
    line-height: 1.6;
    text-align: center;
    width: 100%;
  }

  .button,
  .schedule-button {
    padding: 10px 20px;
    font-size: 1rem;
  }
}
.review-name {
  color: #1b4332; /* dark green text */
  background-color: transparent;
  font-style: italic;
  text-align: center;
  padding: 10px 0;
  font-weight: 600;
}
#resources {
  text-align: center;
}
#resources h2 {
  text-align: center;
  font-weight: 800;
  font-size: 2rem;
  position: relative;
  margin-bottom: 20px;
}

#resources h2::after {
  content: '';
  display: block;
  height: 4px;
  background-color: #2d6a4f;
  width: 120px;
  margin: 10px auto 0;
  border-radius: 4px;
}
body {
  overflow-x: hidden;
}
#blog {
  scroll-margin-top: 160px;
}
/* Smooth scroll for anchor links */
html {
  scroll-behavior: smooth;
}