/* CSS Variables */
:root {
  /* Colors - Modern Green Palette */
  --color-background: #F5FDF7;
  --color-accent: #2E7D32;
  --color-accent-light: #4CAF50;
  --color-accent-dark: #1B5E20;
  --color-secondary-accent: #81C784;
  --color-text: #2C3E50;
  --color-text-light: #546E7A;
  --color-button: #2E7D32;
  --color-button-hover: #1B5E20;
  --color-footer: #E8F5E9;
  --color-light: #ffffff;
  --color-error: #E53935;
  --color-success: #43A047;
  --color-warning: #FFA726;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
  --gradient-secondary: linear-gradient(135deg, #81C784 0%, #A5D6A7 100%);
  --gradient-hero: linear-gradient(135deg, rgba(46, 125, 50, 0.9) 0%, rgba(76, 175, 80, 0.9) 100%);
  --gradient-light: linear-gradient(135deg, #F5FDF7 0%, #E8F5E9 100%);

  /* Typography */
  --font-body: 'Nunito', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-s: 0.5rem;
  --space-m: 1rem;
  --space-l: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;
  --space-xxxl: 4rem;
  
  /* Border Radius */
  --radius-s: 4px;
  --radius-m: 8px;
  --radius-l: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-m: 0 4px 6px rgba(0, 0, 0, 0.08);
  --shadow-l: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 4px 20px rgba(46, 125, 50, 0.1);
  --shadow-button: 0 4px 15px rgba(46, 125, 50, 0.3);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Grid Gap */
  --grid-gap-s: 1rem;
  --grid-gap-m: 2rem;
  --grid-gap-l: 3rem;
  
  /* Breakpoints */
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--gradient-light);
  background-attachment: fixed;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--space-m);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text);
}

@media (max-width: 575px) {
  h1, h2, h3, h4, h5, h6, a {
    word-wrap: anywhere;
  }
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: var(--space-m);
}

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

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

img {
  display: block;
  height: auto;
  max-width: 100%;
}

button {
  background: var(--gradient-primary);
  border: none;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-button);
  color: var(--color-light);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: var(--space-m) var(--space-xl);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

button:hover::before {
  width: 300px;
  height: 300px;
}

button:hover {
  background: var(--gradient-primary);
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
}

button:active {
  transform: translateY(0);
}

ul {
  list-style-type: none;
}

.material-icons {
  font-size: inherit;
}

/* Utility Classes */
.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 var(--space-m);
  width: 100%;
}

.section {
  padding: var(--space-xxl) 0;
  position: relative;
}

.text-center {
  text-align: center;
}

.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--grid-gap-m);
}

@media (min-width: 576px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  .grid--3-cols,
  .grid--4-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  h1 {
    font-size: 3rem;
  }
  
  .grid--2-cols {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--3-cols {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .grid--4-cols {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Header */
.header {
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-m);
  display: flex;
  gap: var(--space-s);
  justify-content: space-between;
  padding: var(--space-m) var(--space-l);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all var(--transition-medium);
}

.header__logo {
  align-items: center;
  display: flex;
  text-decoration: none;
}

.header__logo-img {
  height: 40px;
  margin-right: var(--space-s);
  width: 40px;
}

.header__logo-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  transition: all var(--transition-medium);
}

.header__logo:hover .header__logo-text {
  transform: scale(1.05);
}

.header__menu-button {
  align-items: center;
  background: none;
  border: none;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  font-size: 1.5rem;
  justify-content: center;
  padding: var(--space-xs);
}

@media (min-width: 992px) {
  .header__menu-button {
    display: none;
  }
}

/* Navigation */
.nav {
  background-color: var(--color-light);
  display: none;
  left: 0;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 100;
}

.nav--active {
  display: block;
}

.nav__list {
  display: flex;
  flex-direction: column;
  padding: var(--space-m);
}

.nav__item {
  margin-bottom: var(--space-s);
}

.nav__link {
  color: var(--color-text);
  display: block;
  font-weight: 500;
  padding: var(--space-xs) var(--space-s);
  position: relative;
  text-decoration: none;
  transition: all var(--transition-medium);
  border-radius: var(--radius-s);
}

.nav__link:hover {
  color: var(--color-accent);
  background: rgba(46, 125, 50, 0.05);
}


@media (min-width: 992px) {
  .nav__link::before {
    background: var(--gradient-primary);
    bottom: 0;
    content: "";
    height: 3px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%) scaleX(0);
    transition: transform var(--transition-medium);
    width: 80%;
    border-radius: var(--radius-full);
  }
  
  .nav__link:hover::before,
  .nav__link--active::before {
    transform: translateX(-50%) scaleX(1);
  }
}

.nav__link--active {
  color: var(--color-accent);
  font-weight: 700;
}

@media (min-width: 992px) {
  .nav {
    background-color: transparent;
    display: block;
    position: static;
    width: auto;
  }
  
  .nav__list {
    flex-direction: row;
    padding: 0;
  }
  
  .nav__item {
    margin: 0 0 0 var(--space-l);
  }
}

/* Hero Section */
.hero {
  background: var(--gradient-light);
  display: grid;
  grid-template-columns: 1fr;
  min-height: 85vh;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(46, 125, 50, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xxl) var(--space-l);
  position: relative;
  z-index: 1;
}

.hero__image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 40vh;
  position: relative;
  overflow: hidden;
}

.hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  opacity: 0.3;
}

.hero__title {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.5rem;
  margin-bottom: var(--space-l);
  animation: fadeInUp 0.8s ease-out;
}

.hero__subtitle {
  color: var(--color-text-light);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero__button {
  align-self: flex-start;
  background: var(--gradient-primary);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-button);
  color: var(--color-light);
  font-weight: 700;
  padding: var(--space-m) var(--space-xl);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 992px) {
  .hero {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero__image {
    min-height: 80vh;
  }
}

/* Feature Section */
.feature {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--transition-medium);
  border-radius: var(--radius-l);
}

.feature:hover {
  background: var(--color-light);
  box-shadow: var(--shadow-card);
  transform: translateY(-5px);
}

.feature__icon {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 3.5rem;
  margin-bottom: var(--space-m);
  transition: all var(--transition-bounce);
}

.feature:hover .feature__icon {
  transform: scale(1.1) rotate(5deg);
}

.feature__title {
  margin-bottom: var(--space-s);
  color: var(--color-text);
}

/* Card */
.card {
  background: var(--color-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: all var(--transition-medium);
}

.card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}

.card__image {
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition-slow);
  width: 100%;
}

.card:hover .card__image {
  transform: scale(1.1);
}

.card__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: var(--space-xl);
}

.card__title {
  margin-bottom: var(--space-m);
  color: var(--color-text);
}

.card__button {
  align-self: flex-start;
  margin-top: auto;
  border-radius: var(--radius-m);
}

/* Gallery */
.gallery {
  display: grid;
  gap: var(--space-m);
  grid-template-columns: 1fr;
}

@media (min-width: 576px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery__item {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-l);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-m);
  transition: all var(--transition-medium);
}

.gallery__item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-medium);
  z-index: 1;
}

.gallery__item:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
}

.gallery__item:hover::before {
  opacity: 0.2;
}

.gallery__image {
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  width: 100%;
}

.gallery__item:hover .gallery__image {
  transform: scale(1.15);
}

/* Testimonial */
.testimonial {
  background: var(--color-light);
  border-left: 4px solid;
  border-image: var(--gradient-primary) 1;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-m);
  padding: var(--space-xl);
  position: relative;
  transition: all var(--transition-medium);
}

.testimonial::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  position: absolute;
  top: var(--space-m);
  left: var(--space-m);
  color: var(--color-accent-light);
  opacity: 0.2;
}

.testimonial:hover {
  box-shadow: var(--shadow-l);
  transform: translateY(-3px);
}

.testimonial__quote {
  font-style: italic;
  margin-bottom: var(--space-m);
  position: relative;
  z-index: 1;
}

.testimonial__author {
  color: var(--color-accent);
  font-weight: 700;
  hyphens: auto;
}

/* CTA Section */
.cta {
  background: var(--gradient-primary);
  color: white;
  flex-direction: column;
  padding: var(--space-xxxl) var(--space-l);
  position: relative;
  text-align: center;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: 0;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta__title {
  color: var(--color-light);
  position: relative;
  z-index: 1;
}

.cta p {
  color: white;
  margin-bottom: var(--space-m);
}

.cta__button {
  background: var(--color-light);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-xl);
  color: var(--color-accent);
  display: inline-block;
  font-weight: 700;
  padding: var(--space-m) var(--space-xl);
  position: relative;
  z-index: 1;
  transition: all var(--transition-medium);
}

.cta__button:hover {
  background: var(--color-light);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px) scale(1.05);
}

/* Contact Form */
.form {
  display: grid;
  gap: var(--space-m);
}

.form__group {
  display: flex;
  flex-direction: column;
}

.form__label {
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.form__input,
.form__textarea {
  background-color: var(--color-light);
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-m);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: var(--space-m);
  transition: all var(--transition-medium);
}

.form__textarea {
  min-height: 150px;
  resize: vertical;
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
  outline: none;
}

.form__checkbox-group {
  align-items: flex-start;
  display: flex;
}

.form__checkbox {
  margin-right: var(--space-s);
  margin-top: 0.3rem;
}

.form__error {
  color: var(--color-error);
  font-size: 0.875rem;
  margin-top: var(--space-xs);
}

.form__button {
  justify-self: start;
  margin-top: var(--space-s);
}

/* Footer */
.footer {
  background: var(--gradient-light);
  border-top: 1px solid rgba(46, 125, 50, 0.1);
  padding: var(--space-xxl) 0 var(--space-l);
  position: relative;
}

.footer__grid {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: 1fr;
  margin-bottom: var(--space-xxl);
}

@media (min-width: 576px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer__logo {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-m);
}

.footer__logo-img {
  height: 30px;
  margin-right: var(--space-s);
  width: 30px;
}

.footer__logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
}

.footer__address {
  margin-bottom: var(--space-m);
}

.footer__contact-item {
  align-items: center;
  display: flex;
  gap: var(--space-s);
  margin-bottom: var(--space-xs);
}

.footer__heading {
  font-size: 1.25rem;
  margin-bottom: var(--space-l);
}

.footer__list-item {
  margin-bottom: var(--space-xs);
}

.footer__bottom {
  border-top: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
  padding-top: var(--space-l);
}

@media (min-width: 992px) {
  .footer__bottom {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__copyright {
  font-size: 0.875rem;
  margin-bottom: 0;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-m);
}

.footer__link {
  color: var(--color-text);
  font-size: 0.875rem;
}

/* Back to Top Button */
.back-to-top {
  align-items: center;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-button);
  bottom: var(--space-l);
  color: var(--color-light);
  display: flex;
  height: 56px;
  justify-content: center;
  opacity: 0;
  position: fixed;
  right: var(--space-l);
  text-decoration: none;
  transition: all var(--transition-medium);
  width: 56px;
  z-index: 99;
}

.back-to-top:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px) scale(1.1);
}

.back-to-top--visible {
  opacity: 1;
}

/* Cookie Consent */
.cookie-consent {
  align-items: center;
  background-color: var(--color-light);
  bottom: 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
  left: 0;
  padding: var(--space-l);
  position: fixed;
  right: 0;
  transform: translateY(100%);
  transition: transform var(--transition-medium);
  z-index: 999;
}

.cookie-consent--visible {
  transform: translateY(0);
}

.cookie-consent__text {
  margin-bottom: 0;
  text-align: center;
}

.cookie-consent__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-m);
  justify-content: center;
}

.cookie-consent__button--settings {
  background-color: transparent;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
}

.cookie-consent__button--settings:hover {
  background-color: rgba(34, 139, 34, 0.1);
}

.cookie-settings {
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.cookie-settings--visible {
  display: block;
}

.cookie-settings__content {
  background-color: var(--color-light);
  border-radius: 4px;
  left: 50%;
  max-height: 90vh;
  max-width: 600px;
  overflow-y: auto;
  padding: var(--space-l);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
}

.cookie-settings__heading {
  margin-bottom: var(--space-l);
}

.cookie-settings__group {
  border-bottom: 1px solid #ddd;
  margin-bottom: var(--space-l);
  padding-bottom: var(--space-l);
}

.cookie-settings__group-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-s);
}

.cookie-settings__label {
  font-weight: 700;
}

.cookie-settings__switch {
  background-color: #ccc;
  border-radius: 34px;
  cursor: pointer;
  display: inline-block;
  height: 24px;
  position: relative;
  transition: var(--transition-fast);
  width: 48px;
}

.cookie-settings__switch--active {
  background-color: var(--color-accent);
}

.cookie-settings__switch::before {
  background-color: white;
  border-radius: 50%;
  bottom: 4px;
  content: "";
  height: 16px;
  left: 4px;
  position: absolute;
  transition: var(--transition-fast);
  width: 16px;
}

.cookie-settings__switch--active::before {
  transform: translateX(24px);
}

.cookie-settings__switch--disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.cookie-settings__description {
  font-size: 0.875rem;
  margin-bottom: var(--space-m);
}

.cookie-settings__buttons {
  display: flex;
  gap: var(--space-m);
  justify-content: flex-end;
  margin-top: var(--space-l);
}

/* Policy Pages */
.policy {
  background: var(--color-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-m);
  margin: var(--space-l) 0;
  padding: var(--space-xxl);
}

.policy__section {
  margin-bottom: var(--space-xl);
}

.policy__heading {
  border-bottom: 1px solid #ddd;
  margin-bottom: var(--space-m);
  padding-bottom: var(--space-xs);
}

.policy__list {
  list-style-type: disc;
  margin-left: var(--space-l);
  margin-bottom: var(--space-m);
}

.policy__list-item {
  margin-bottom: var(--space-xs);
}

/* Thank You Page */
.thank-you {
  align-items: center;
  background: var(--color-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-l);
  display: flex;
  flex-direction: column;
  margin: var(--space-xxl) auto;
  max-width: 600px;
  padding: var(--space-xxxl);
  position: relative;
  text-align: center;
  overflow: hidden;
}

.thank-you::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(46, 125, 50, 0.05) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.thank-you__icon {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 5rem;
  margin-bottom: var(--space-l);
  position: relative;
  z-index: 1;
  animation: scaleIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.thank-you__title {
  margin-bottom: var(--space-m);
}

.thank-you__text {
  margin-bottom: var(--space-xl);
}

.thank-you__button {
  margin-top: var(--space-m);
}

.thank-you__button--outline {
  background-color: transparent;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
}

.thank-you__button--outline:hover {
  background-color: rgba(34, 139, 34, 0.1);
}

/* Section Backgrounds */
.section--light {
  background-color: var(--color-light);
}

.section--accent {
  background: var(--gradient-primary);
  color: var(--color-light);
  position: relative;
  overflow: hidden;
}

.section--accent::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.section--accent .text-center,
.section--accent h1,
.section--accent h2,
.section--accent h3,
.section--accent h4,
.section--accent p {
  color: var(--color-light);
}

/* List Styles */
.list {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-bottom: var(--space-m);
}

.list-item {
  margin-bottom: var(--space-xs);
}

/* Image Styles */
.img-responsive {
  width: 100%;
  height: auto;
  border-radius: var(--radius-m);
}

/* Section Animations */
.section {
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Card Hover Effects Enhancement */
.card__button {
  position: relative;
  overflow: hidden;
}

.card__button::after {
  content: '→';
  position: absolute;
  right: var(--space-m);
  transform: translateX(-10px);
  opacity: 0;
  transition: all var(--transition-medium);
}

.card__button:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* Enhanced Typography */
p {
  color: var(--color-text-light);
}

strong {
  color: var(--color-text);
  font-weight: 700;
}

/* Cookie Settings Enhancement */
.cookie-settings__content {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.cookie-consent {
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  box-shadow: var(--shadow-xl);
}

/* Navigation Enhancement for Desktop */
@media (min-width: 992px) {
  .nav__link {
    padding: var(--space-xs) var(--space-m);
  }
}

/* Smooth Scroll Enhancement */
html {
  scroll-padding-top: 80px;
}

/* Button class for links styled as buttons */
a.button {
  background: var(--gradient-primary);
  border: none;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-button);
  color: var(--color-light);
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: var(--space-m) var(--space-xl);
  position: relative;
  text-decoration: none;
  transition: all var(--transition-medium);
  overflow: hidden;
}

a.button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

a.button:hover::before {
  width: 300px;
  height: 300px;
}

a.button:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
}

a.button:active {
  transform: translateY(0);
}

/* Enhanced Focus States for Accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: var(--radius-s);
}

/* Unique Section Dividers */
.section--light {
  position: relative;
}

.section--light:not(:last-child)::after {
  content: '';
  display: block;
  height: 1px;
  width: 80%;
  background: linear-gradient(90deg, transparent 0%, rgba(46, 125, 50, 0.15) 50%, transparent 100%);
  margin: var(--space-xxl) auto 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Enhanced Card Content */
.card__content p {
  color: var(--color-text-light);
  line-height: 1.7;
}

/* Feature Cards with Unique Style */
.feature p {
  max-width: 300px;
}

/* Improved Spacing for Sections */
.section > .container {
  position: relative;
  z-index: 1;
}

/* Unique Hover Effect for Links in Content */
.content a:not(.button):not(.nav__link):not(.footer__link) {
  border-bottom: 2px solid var(--color-accent-light);
  transition: all var(--transition-medium);
}

.content a:not(.button):not(.nav__link):not(.footer__link):hover {
  border-bottom-color: var(--color-accent);
  color: var(--color-accent);
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .back-to-top,
  .cookie-consent,
  .cookie-settings {
    display: none;
  }
  
  body {
    background: white;
  }
  
  .section {
    page-break-inside: avoid;
  }
}