/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: #1A1A1A;
  background: #FFFFFF;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ===== HEADER ===== */
.site-header {
  background: #FFFFFF;
  border-bottom: 2px solid #0D6E5A;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-link { display: flex; align-items: center; }
.logo-img { height: 40px; width: auto; }
.header-nav { display: flex; gap: 28px; }
.header-nav a {
  font-size: 14px;
  font-weight: 600;
  color: #1A1A1A;
  transition: color 0.2s;
}
.header-nav a:hover { color: #0D6E5A; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1A1A1A;
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  background: #1A1A1A;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 24px;
}
.hero h1 {
  font-size: 38.4px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero h1 span { color: #0D6E5A; }
.hero p {
  font-size: 16px;
  color: #AAAAAA;
  max-width: 620px;
  margin: 0 auto 32px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: #0D6E5A;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 6px;
  transition: background 0.2s;
}
.btn-primary:hover { background: #0A5748; }
.btn-white {
  display: inline-block;
  background: #FFFFFF;
  color: #0D6E5A;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 6px;
  border: 2px solid #FFFFFF;
  transition: background 0.2s, color 0.2s;
}
.btn-white:hover { background: #0D6E5A; color: #FFFFFF; border-color: #0D6E5A; }

/* ===== SECTIONS ===== */
.section { padding: 64px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 14px;
  color: #666666;
  margin-bottom: 40px;
}
.section-alt { background: #F5F5F5; }

/* ===== CARDS ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 10px;
  padding: 28px 24px;
}
.card-icon {
  width: 44px;
  height: 44px;
  background: #0D6E5A;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card-icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 17px; font-weight: 700; color: #1A1A1A; margin-bottom: 8px; }
.card p { font-size: 14px; color: #555555; }

/* ===== CTA BAND ===== */
.cta-band {
  background: #0D6E5A;
  color: #FFFFFF;
  text-align: center;
  padding: 60px 24px;
}
.cta-band h2 { font-size: 30px; font-weight: 700; margin-bottom: 14px; }
.cta-band p { font-size: 15px; margin-bottom: 28px; opacity: 0.9; }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #E0E0E0; padding: 20px 0; }
.faq-item h4 { font-size: 16px; font-weight: 700; color: #1A1A1A; margin-bottom: 8px; }
.faq-item p { font-size: 14px; color: #555555; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: #1A1A1A;
  color: #FFFFFF;
  text-align: center;
  padding: 60px 24px 50px;
}
.page-hero h1 { font-size: 38.4px; font-weight: 800; margin-bottom: 12px; }
.page-hero p { font-size: 15px; color: #AAAAAA; max-width: 560px; margin: 0 auto; }

/* ===== PAGE CONTENT ===== */
.page-content { max-width: 820px; margin: 0 auto; padding: 56px 24px; }
.page-content h2 { font-size: 24px; font-weight: 700; color: #1A1A1A; margin: 36px 0 12px; }
.page-content h2:first-child { margin-top: 0; }
.page-content p { font-size: 14px; color: #444444; margin-bottom: 14px; line-height: 1.8; }
.page-content ul { padding-left: 20px; margin-bottom: 14px; }
.page-content ul li { font-size: 14px; color: #444444; margin-bottom: 8px; }

/* Contact form */
.contact-form { max-width: 560px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: #1A1A1A; margin-bottom: 6px; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #CCCCCC;
  border-radius: 6px;
  font-size: 14px;
  color: #1A1A1A;
  background: #FAFAFA;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: #0D6E5A; }
.form-group textarea { height: 130px; resize: vertical; }

/* ===== FOOTER ===== */
.site-footer {
  background: #1A1A1A;
  color: #FFFFFF;
  padding: 52px 24px 0;
}
.footer-main {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 36px;
}
.footer-logo { margin: 0 auto 20px; }
.footer-logo-img {
  height: 40px;
  width: auto;
  display: inline-block;
}
.footer-desc {
  font-size: 14px;
  color: #888888;
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 28px;
}
.footer-nav a {
  font-size: 14px;
  color: #AAAAAA;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover { color: #0D6E5A; }

.footer-disclosure {
  max-width: 1100px;
  margin: 32px auto 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.footer-disclosure p {
  font-size: 11px;
  color: #666666;
  line-height: 1.65;
  margin-bottom: 6px;
}
.footer-disclosure p:last-child { margin-bottom: 0; }

.footer-copy {
  background: #111111;
  text-align: center;
  padding: 14px 24px;
  font-size: 12px;
  color: #555555;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .header-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    flex-direction: column;
    padding: 16px 24px;
    border-top: 1px solid #E0E0E0;
    z-index: 100;
    gap: 14px;
  }
  .header-nav.open { display: flex; }
  .site-header { position: relative; }
  .hero h1 { font-size: 28px; }
  .cards { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 28px; }
}
