*,
*::before,
*::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Verdana, Arial, sans-serif;
  line-height: 1.55;
  color: #111827;
  background: #fff;
}

:root {
  --brand: #7FAF41;
  --brand-dark: #006F3A;
  --ink: #111827;
  --muted: #6b7280;
  --card: #f9fafb;
  --border: #e5e7eb;
  --radius: 12px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* ===== Header / Logo ===== */
.site-header {
  background: #fff;
  text-align: center;
  padding-top: 1rem;
  border-bottom: 1px solid var(--border);
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}

.hero-logo {
  width: 85%;             
  max-width: 720px;       
  height: auto;
  border-radius: 25px;
  border: 4px solid var(--brand);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
}

/* Shrink on smaller screens */
@media (max-width: 600px) {
  .hero-logo {
    width: 100%;
    border-radius: 18px;
    border-width: 3px;
  }
}

/* ===== Top Navigation (under logo) ===== */
.top-nav {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0 0.75rem;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-size: 20px;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.nav-list.open {
  display: flex;
}

.nav-list a {
  display: block;
  padding: 0.5rem 0.65rem;
  text-decoration: none;
  color: #0b0b0b;
  border-radius: 10px;
  font-weight: 600;
}

.nav-list a:hover {
  background: #f3f4f6;
  color: var(--brand-dark);
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-list a {
    padding: 0.5rem 0.75rem;
  }
}

/* ===== Layout ===== */
.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px; /* content | form */
  gap: 1.25rem;
  padding: 1.25rem 0 1.5rem;
}

@media (max-width: 980px) {
  .layout {
    grid-template-columns: 1fr;
  }
}

/* ===== Content ===== */
h1 {
  color: var(--brand-dark);
  margin: 0.25rem 0 0.5rem;
}

p {
  margin-bottom: 0.75rem;
}

.muted {
  color: var(--muted);
}

.video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius);
  background: #000;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.form label {
  display: block;
  font-weight: 700;
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
}

.form input[type=text],
.form input[type=email],
.form input[type=tel],
.form select,
.form textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  font: inherit;
  color: var(--ink);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.form textarea {
  resize: vertical;
  min-height: 100px;
}

.btn {
  margin-top: 1rem;
  background: var(--brand-dark);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.75rem 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-block;
}

.btn:hover {
  filter: brightness(0.93);
}

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 1rem 0;
  text-align: center;
  background: #fff;
}

.small {
  color: var(--muted);
  font-size: 0.9rem;
}
.hipaa-wrapper {
  text-align: center;
  margin: 1rem 0 1.5rem;
}

.hipaa-badge {
  width: 120px;
  max-width: 100%;
  border: none;                  /* no green border */
  border-radius: 12px;           /* soft edges */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12); /* subtle depth */
  display: inline-block;
}

/* Responsive spacing */
@media (max-width: 600px) {
  .hipaa-badge {
    width: 100px;
  }
}