body {
  font-family: "Inter", sans-serif;
  color: #1f2937;
  background-color: #ffffff;
}

.navbar {
  border-bottom: 1px solid #e5e7eb;
  background-color: #ffffff;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.navbar-brand {
  font-weight: 700;
  color: #004c4f !important;
}

.navbar-brand img {
  max-height: 60px;
  margin-right: 0.6rem;
}

.navbar-nav .nav-link {
  color: #374151 !important;
  font-weight: 500;
  margin-left: 0.4rem;
  margin-right: 0.4rem;
}

.navbar-nav .nav-link:hover {
  color: #0a8083 !important;
}

h1, h2, h3 {
  color: #004c4f;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

p, li {
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-banner {
  padding: 8rem 2rem 6rem 2rem;
  text-align: center;
  background: linear-gradient(to bottom, #f4fbfb, #ffffff);
  margin-bottom: 4rem;
  border-radius: 24px;
}

.hero-banner h1 {
  font-size: 4rem;
  line-height: 1.1;
  max-width: 950px;
  margin: 0 auto 1.2rem auto;
  color: #004c4f;
}

.hero-banner p {
  max-width: 820px;
  margin: 0 auto 2rem auto;
  color: #4b5563;
  font-size: 1.15rem;
}

a {
  color: #0a8083;
}

.btn {
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
}

.btn-primary {
  background-color: #004c4f;
  border-color: #004c4f;
}

.btn-primary:hover {
  background-color: #0a8083;
  border-color: #0a8083;
}

.btn-outline-primary {
  color: #004c4f;
  border-color: #004c4f;
}

.btn-outline-primary:hover {
  background-color: #004c4f;
  border-color: #004c4f;
}

main.content {
  max-width: 1400px;
}

.quarto-title-banner {
  background: transparent;
}

footer.footer {
  border-top: 1px solid #e5e7eb;
  margin-top: 4rem;
}

.section-block {
  padding: 2.5rem 2rem;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  margin-bottom: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 2rem;
  box-shadow: 0 12px 30px rgba(0, 76, 79, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 76, 79, 0.10);
}

.service-card h3 {
  margin-top: 0;
  color: #004c4f;
}

@media (max-width: 900px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.solution-card {
  background: linear-gradient(135deg, #004c4f, #0a8083);
  color: white;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 14px 32px rgba(0, 76, 79, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 76, 79, 0.18);
}

.solution-card h3 {
  color: white;
  margin-top: 0;
}

@media (max-width: 900px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
}