:root {
  --brand:#036672;
  --brand-2:#00afcc;
  --bg:#ffffff;
  --text:#0f172a;
  --shadow:rgba(3,102,114,0.15);
  --bodybg:#f9fbfc;
}

body {
  margin:0;
  font-family:'Segoe UI',Roboto,Arial,sans-serif;
  color:var(--text);
  line-height:1.6;
  background:var(--bodybg);
}

/* ===== HEADER ===== */
.site-header {
  position:fixed;
  top:0; left:0; right:0;
  z-index:9999;
  background:var(--bg);
  border-bottom:1px solid #e5e7eb;
  box-shadow:0 4px 14px var(--shadow);
}
.nav-wrap {
  max-width:1100px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 16px;
}
.brand {
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:var(--brand);
}
.brand .logo {
  width:40px; height:40px;
  border-radius:12px;
  background:linear-gradient(135deg,var(--brand-2),var(--brand));
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 12px var(--shadow);
  overflow:hidden;
}
.brand .logo img {
  width:100%; height:100%; object-fit:cover;
}
.brand .title {
  font-size:18px; font-weight:800; letter-spacing:0.3px;
}
.nav {
  display:flex; align-items:center; gap:10px;
}
.nav a {
  text-decoration:none;
  font-weight:600;
  border:1px solid #e5e7eb;
  padding:10px 16px;
  border-radius:10px;
  color:var(--text);
  background:#fff;
  transition:0.3s;
}
.nav a:hover {
  border-color:#cbd5e1;
  box-shadow:0 5px 16px var(--shadow);
}
.nav a.primary {
  background:var(--brand);
  color:#fff;
  border-color:var(--brand);
}
.nav a.primary:hover {
  filter:brightness(1.05);
  box-shadow:0 8px 20px rgba(3,102,114,0.25);
}
@media(max-width:700px){
  .brand .title{font-size:16px;}
  .nav a{padding:8px 12px;font-size:14px;}
}

/* ===== BODY OFFSET ===== */
body { margin-top:80px; }

/* ===== HERO ===== */
.hero {
  max-width:1100px;
  margin:30px auto;
  background:#fff;
  border-radius:16px;
  padding:30px;
  text-align:center;
  box-shadow:0 8px 30px var(--shadow);
}
.hero h1 { color:var(--brand); font-size:30px; margin-top:0; }
.hero p { max-width:700px; margin:10px auto 0; color:#333; }
.cta-btn {
  display:inline-block;
  margin-top:20px;
  padding:12px 24px;
  background:var(--brand);
  color:#fff;
  border-radius:10px;
  font-weight:700;
  text-decoration:none;
  transition:.3s;
}
.cta-btn:hover { background:var(--brand-2); }

/* ===== FEATURES ===== */
.section { max-width:1100px; margin:40px auto; padding:0 16px; }
.features {
  display:grid; grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}
@media(max-width:900px){.features{grid-template-columns:repeat(2,1fr);}}
@media(max-width:600px){.features{grid-template-columns:1fr;}}
.card {
  background:#fff; border-radius:14px; padding:20px;
  border:1px solid #e5e7eb; box-shadow:0 8px 30px var(--shadow);
}
.icon-box {
  width:46px;height:46px;border-radius:12px;
  background:linear-gradient(145deg,#e6fbff,#f4fbff);
  display:flex;align-items:center;justify-content:center;
  border:1px solid #eaf4f8;box-shadow:inset 0 0 0 6px #ffffff;
  margin-bottom:10px;
}
.icon-box img{width:100%;height:100%;object-fit:cover;}

/* ===== INFO ===== */
.info {
  background:#fff; border-radius:14px; padding:24px;
  border:1px solid #e5e7eb; box-shadow:0 8px 30px var(--shadow);
}
ul{margin:12px 0 0 20px;}
ul li{margin:6px 0;}

/* ===== FAQ ===== */
.faq-grid {
  display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px;
}
@media(max-width:900px){.faq-grid{grid-template-columns:1fr;}}
.faq-item {
  background:#fff; border-radius:12px; padding:16px;
  border:1px solid #e5e7eb; box-shadow:0 8px 24px var(--shadow);
}
.faq-item h3{margin:0 0 8px;font-size:17px;color:var(--brand);}
.faq-item p{margin:0;color:#334155;}

































/* === Premium Dark-Teal Footer === */
.footer-pro {
  background: #036672;
  color: #e6fbff;
  font-family: 'Segoe UI', sans-serif;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 0 16px;
}

.footer-column h3 {
  color: #ffffff;
  margin-bottom: 14px;
  font-size: 15px;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(255,255,255,0.2);
  display: inline-block;
  padding-bottom: 4px;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column a {
  color: #e6fbff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.footer-column a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-logo {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.footer-column.brand p {
  font-size: 14px;
  color: #cceef1;
}

.footer-column.brand a {
  color: #fff;
  font-weight: bold;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 30px;
  padding: 18px 10px;
  font-size: 13px;
  color: #cceef1;
}

.footer-bottom a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 950px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}


















