@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,400&display=swap');
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  color: #334155;
  margin-top: 75px;
  line-height: 1.75;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: #0f766e; transition: all 0.25s ease; }
a:hover { color: #115e59; text-decoration: none; }

/* Header */
#header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  z-index: 997;
  padding: 14px 0;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}
#header.header-scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}
#header .logo { font-size: 22px; margin: 0; font-weight: 800; }
#header .logo a { color: #0f172a; text-decoration: none; }

/* Navbar */
.navbar { padding: 0; }
.navbar ul { margin: 0; padding: 0; display: flex; list-style: none; align-items: center; }
.navbar li { position: relative; }
.navbar a {
  display: flex;
  align-items: center;
  padding: 10px 0 10px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #334155;
  white-space: nowrap;
  transition: 0.25s ease;
}
.navbar a:hover, .navbar .active, .navbar li:hover > a { color: #0f766e; }
.navbar .getstarted {
  background: #0f766e;
  padding: 9px 24px;
  margin-left: 20px;
  border-radius: 30px;
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(15, 118, 110, 0.25);
}
.navbar .getstarted:hover {
  background: #115e59;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(15, 118, 110, 0.35);
}

/* Mobile nav */
.mobile-nav-toggle {
  color: #0f172a;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.3s;
}
.mobile-nav-toggle.bi-x { color: #fff; }
@media (max-width: 991px) {
  .mobile-nav-toggle { display: block; }
  .navbar ul { display: none; }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0; right: 0; left: 0; bottom: 0;
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(12px);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle { position: absolute; top: 18px; right: 18px; }
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 60px; right: 15px; bottom: 15px; left: 15px;
  padding: 20px 0;
  background-color: #ffffff;
  overflow-y: auto;
  transition: 0.3s;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
.navbar-mobile a { padding: 12px 24px; font-size: 16px; color: #1e293b; }
.navbar-mobile a:hover, .navbar-mobile .active { color: #0f766e; }
.navbar-mobile .getstarted { margin: 15px 24px; text-align: center; justify-content: center; }

/* Sections */
section { padding: 30px 0; overflow: hidden; }

/* Cards & Badges */
.card {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}
.badge-teal {
  background: #f0fdfa;
  color: #0f766e;
  border: 1px solid #99f6e4;
}