:root {
  --color-primary: #2E8B57;
  --color-primary-dark: #1F5F3B;
  --color-primary-light: #3CB371;
  --color-secondary: #87CEEB;
  --color-accent: #8B4513;
  --color-neutral-50: #f8fafc;
  --color-neutral-100: #f1f5f9;
  --color-neutral-200: #e2e8f0;
  --color-neutral-800: #1e293b;
  --color-neutral-900: #0f172a;
  --color-bg: #FDFDFD;
  --color-text: #333333;
  --color-text-muted: #666666;

  --font-heading: 'Merriweather', serif;
  --font-body: 'Open Sans', sans-serif;
  --spacing-section: 5rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  font-size: 1.125rem;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--color-neutral-900);
}
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover { color: var(--color-primary-dark); }
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.ahg-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ahg-skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: white;
  padding: 8px;
  z-index: 100;
  transition: top 0.3s;
}
.ahg-skip-link:focus { top: 0; }

.ahg-header {
  background: var(--color-bg);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}
.ahg-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.ahg-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}
.ahg-nav-checkbox { display: none; }
.ahg-hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.ahg-hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--color-neutral-900);
  transition: 0.3s;
}
.ahg-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.ahg-nav a {
  font-weight: 600;
  color: var(--color-text);
}
.ahg-nav a.active, .ahg-nav a:hover {
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .ahg-hamburger { display: flex; }
  .ahg-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--color-bg);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    padding: 1rem 0;
  }
  .ahg-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .ahg-nav-checkbox:checked ~ .ahg-header-inner .ahg-nav { display: block; }
}

.ahg-hero {
  display: flex;
  align-items: center;
  padding: var(--spacing-section) 0;
  background: linear-gradient(to right, rgba(253,253,253,0.9), rgba(253,253,253,0.7)), url('../images/hero.jpg') center/cover;
}
.ahg-hero-content {
  max-width: 700px;
}
.ahg-hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary-dark);
}
.ahg-hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--color-neutral-800);
}
.ahg-btn {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s;
}
.ahg-btn:hover {
  background: var(--color-primary-dark);
  color: white;
}
.ahg-btn-outline {
  background: transparent;
  color: var(--color-primary-dark);
  border: 2px solid var(--color-primary-dark);
  margin-left: 1rem;
}
.ahg-btn-outline:hover {
  background: var(--color-primary-light);
  color: white;
  border-color: var(--color-primary-light);
}
@media (max-width: 480px) {
    .ahg-btn-outline {
        margin-left: 0;
        margin-top: 1rem;
        display: block;
        width: fit-content;
    }
}

.ahg-features {
  padding: var(--spacing-section) 0;
  background: var(--color-neutral-50);
}
.ahg-section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}
.ahg-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.ahg-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}
.ahg-card:hover {
  transform: translateY(-5px);
}
.ahg-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.ahg-card-body {
  padding: 1.5rem;
}
.ahg-card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.ahg-testimonials {
  padding: var(--spacing-section) 0;
}
.ahg-testimonial-card {
  background: var(--color-neutral-50);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--color-secondary);
}
.ahg-quote {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--color-neutral-800);
}
.ahg-author {
  font-weight: 600;
  color: var(--color-primary-dark);
}

.ahg-faq {
  padding: var(--spacing-section) 0;
  background: var(--color-neutral-50);
}
.ahg-faq-item {
  background: white;
  margin-bottom: 1rem;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}
.ahg-faq-q {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.ahg-page-hero {
  padding: 4rem 0;
  background: var(--color-primary-dark);
  color: white;
  text-align: center;
}
.ahg-page-hero h1 { color: white; margin: 0; }
.ahg-content-section {
  padding: var(--spacing-section) 0;
}
.ahg-content-section p { margin-bottom: 1rem; }
.ahg-text-center { text-align: center; }

.ahg-contact-info {
  margin-top: 2rem;
  font-size: 1.125rem;
  background: var(--color-neutral-50);
  padding: 2rem;
  border-radius: 8px;
}
.ahg-contact-info p { margin-bottom: 1rem; }
.ahg-contact-info strong { color: var(--color-primary-dark); }

.ahg-footer {
  background: var(--color-neutral-900);
  color: var(--color-neutral-200);
  padding: 3rem 0 1rem;
}
.ahg-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.ahg-footer h4 {
  color: white;
  margin-bottom: 1rem;
}
.ahg-footer p { margin-bottom: 1rem; }
.ahg-footer ul { list-style: none; }
.ahg-footer ul li { margin-bottom: 0.5rem; }
.ahg-footer a { color: var(--color-neutral-200); }
.ahg-footer a:hover { color: var(--color-secondary); }
.ahg-footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--color-neutral-800);
  font-size: 0.875rem;
}

.ahg-cookie-checkbox { display: none; }
.ahg-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--color-neutral-900);
  color: white;
  padding: 1rem;
  text-align: center;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.ahg-cookie-banner a { color: var(--color-secondary); text-decoration: underline; }
.ahg-cookie-btn {
  background: var(--color-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
}
.ahg-cookie-checkbox:checked ~ .ahg-cookie-banner { display: none; }

@media print {
  .ahg-header, .ahg-footer, .ahg-hero, .ahg-cookie-banner { display: none !important; }
  body { background: white; color: black; }
}
