body {
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.navbar-logo {
  height: 40px;
  width: auto;
}
.hero-image-placeholder {
  background-color: #2d5b5f;
}

/* Tailwind utility classes must be used directly in HTML for section-title and card.
   If you want to keep these classes, define them manually as below: */
.section-title {
  font-size: 1.875rem; /* text-3xl */
  font-weight: 700;    /* font-bold */
  margin-bottom: 2.5rem; /* mb-10 */
  text-align: center;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem; /* md:text-4xl */
    margin-bottom: 3rem; /* md:mb-12 */
  }
}

.card {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.08);
  transition: box-shadow 0.3s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.16);
}

.primary-button {
  display: inline-block;
  background-color: #4FD1C5;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-align: center;
  text-decoration: none;
}
.primary-button:hover {
  background-color: #38B2AC;
  transform: scale(1.05);
}

.secondary-button {
  display: inline-block;
  background-color: transparent;
  border: 2px solid #4FD1C5;
  color: #4FD1C5;
  font-weight: 600;
  padding: 0.625rem 1.75rem;
  border-radius: 0.5rem;
  transition: all 0.3s;
  text-align: center;
  text-decoration: none;
}
.secondary-button:hover {
  background-color: #f5f5f0; /* theme-secondary */
}

.list-icon-styled {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.75rem;
  color: #4FD1C5;
  flex-shrink: 0;
}