:root {
  --color-primary: #2d5a3d;
  --color-secondary: #8cb369;
  --color-accent: #f4a259;
  --color-dark: #1a1a2e;
  --color-light: #f8f9fa;
  --color-muted: #6c757d;
  --color-white: #ffffff;
  --color-bg-alt: #e8f0e3;
  --color-border: #dee2e6;
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  line-height: 1.7;
  color: var(--color-dark);
  background-color: var(--color-white);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-secondary);
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--color-accent);
  color: var(--color-dark);
}

.btn-secondary:hover {
  background-color: #e8923f;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  box-shadow: var(--shadow-soft);
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.ad-disclosure {
  background-color: var(--color-bg-alt);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  color: var(--color-muted);
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-list a {
  color: var(--color-dark);
  font-weight: 500;
}

.nav-list a:hover {
  color: var(--color-primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--color-dark);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  background-color: #d4e5d1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--color-dark);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: var(--color-muted);
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-alt {
  background-color: var(--color-bg-alt);
}

.section-dark {
  background-color: var(--color-dark);
  color: var(--color-white);
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 15px;
  color: var(--color-dark);
}

.section-dark .section-title {
  color: var(--color-white);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-muted);
  margin-bottom: 40px;
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* Story Flow */
.story-block {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.story-block:nth-child(even) {
  flex-direction: row-reverse;
}

.story-text {
  flex: 1;
}

.story-image {
  flex: 1;
  background-color: #c5d9c2;
  border-radius: 12px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.story-text h3 {
  font-size: 1.75rem;
  margin-bottom: 15px;
}

.story-text p {
  color: var(--color-muted);
  margin-bottom: 20px;
}

/* Services Cards */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-card {
  flex: 1 1 300px;
  max-width: 350px;
  background-color: var(--color-white);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.service-card-image {
  height: 200px;
  background-color: #c5d9c2;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-content {
  padding: 25px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 15px;
}

/* Testimonials */
.testimonials-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.testimonial {
  background-color: var(--color-white);
  padding: 35px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 25px;
  font-size: 4rem;
  color: var(--color-secondary);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
  padding-left: 30px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-left: 30px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 600;
}

.testimonial-info strong {
  display: block;
}

.testimonial-info span {
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* Benefits */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--color-white);
}

.benefit-content h4 {
  font-size: 1.15rem;
  margin-bottom: 5px;
}

.benefit-content p {
  color: var(--color-muted);
}

/* CTA Sections */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: 60px 40px;
  border-radius: 16px;
  text-align: center;
  color: var(--color-white);
}

.cta-banner h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-banner p {
  margin-bottom: 25px;
  opacity: 0.9;
}

.cta-banner .btn {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.cta-banner .btn:hover {
  background-color: var(--color-accent);
  color: var(--color-dark);
}

/* Form */
.form-section {
  background-color: var(--color-bg-alt);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--color-white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  margin-top: 10px;
}

/* About */
.about-intro {
  display: flex;
  gap: 50px;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  background-color: #c5d9c2;
  border-radius: 12px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Contact */
.contact-grid {
  display: flex;
  gap: 50px;
}

.contact-info {
  flex: 1;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-icon {
  width: 45px;
  height: 45px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--color-white);
}

.contact-details h4 {
  margin-bottom: 5px;
}

.contact-details p {
  color: var(--color-muted);
}

/* References */
.references-section {
  background-color: var(--color-light);
  padding: 40px 0;
}

.references-list {
  list-style: none;
}

.references-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
}

.references-list a {
  color: var(--color-primary);
  word-break: break-all;
}

/* Disclaimer */
.disclaimer {
  background-color: #fff8e7;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid var(--color-accent);
  margin: 40px 0;
}

.disclaimer h4 {
  margin-bottom: 10px;
  color: var(--color-dark);
}

.disclaimer p {
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* Footer */
.footer {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-col h4 {
  margin-bottom: 20px;
  color: var(--color-secondary);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-col a:hover {
  color: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 20px;
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
}

.cookie-text a {
  color: var(--color-secondary);
}

.cookie-buttons {
  display: flex;
  gap: 15px;
}

.cookie-btn {
  padding: 10px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
}

.cookie-accept {
  background-color: var(--color-secondary);
  color: var(--color-dark);
}

.cookie-reject {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
}

/* Thanks Page */
.thanks-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 100px;
}

.thanks-content {
  max-width: 500px;
}

.thanks-icon {
  width: 100px;
  height: 100px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.thanks-icon svg {
  width: 50px;
  height: 50px;
  fill: var(--color-white);
}

.thanks-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.thanks-content p {
  color: var(--color-muted);
  margin-bottom: 30px;
}

/* Legal Pages */
.legal-page {
  padding-top: 120px;
  padding-bottom: 60px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 30px 0 15px;
}

.legal-content p {
  margin-bottom: 15px;
  color: var(--color-muted);
}

.legal-content ul {
  margin-left: 25px;
  margin-bottom: 20px;
}

.legal-content li {
  margin-bottom: 8px;
  color: var(--color-muted);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.sticky-cta.show {
  opacity: 1;
  visibility: visible;
}

.sticky-cta .btn {
  box-shadow: var(--shadow-medium);
}

/* Responsive */
@media (max-width: 992px) {
  .story-block {
    flex-direction: column;
  }

  .story-block:nth-child(even) {
    flex-direction: column;
  }

  .about-intro {
    flex-direction: column;
  }

  .contact-grid {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .nav-main {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    flex-direction: column;
    padding: 30px;
    box-shadow: var(--shadow-soft);
    transform: translateY(-150%);
    transition: var(--transition);
  }

  .nav-main.active {
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    text-align: center;
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .form-container {
    padding: 25px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}
