:root {
  --alpine-green: #2E7D32;
  --alpine-green-dark: #1B5E20;
  --alpine-green-light: #4CAF50;
  --text-dark: #212121;
  --text-medium: #616161;
  --text-light: #757575;
  --bg-light: #FAFAFA;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
}

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

body {
  font-family: system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--alpine-green);
  font-size: 1.5rem;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
  text-decoration: none;
}

.logo img {
  width: 40px;
  height: 40px;
  margin-right: 0.75rem;
  border-radius: 4px;
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav a {
  color: var(--text-medium);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--alpine-green);
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin-top: 70px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.75), rgba(27, 94, 32, 0.65));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 3rem 1.5rem;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

section {
  padding: 5rem 0;
}

section:nth-child(even) {
  background: var(--bg-light);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--alpine-green);
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--alpine-green-dark);
  margin-bottom: 1.25rem;
  margin-top: 2.5rem;
}

.content-with-image {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin: 3rem 0;
}

.content-with-image img {
  max-width: 380px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.content-with-image.image-right {
  flex-direction: row;
}

.content-with-image.image-left {
  flex-direction: row-reverse;
}

.text-content {
  flex: 1;
}

.text-content p {
  margin-bottom: 1.25rem;
  color: var(--text-medium);
  font-size: 1.05rem;
}

.text-content ul {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.text-content li {
  margin-bottom: 0.75rem;
  color: var(--text-medium);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card h3 {
  color: var(--alpine-green);
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.card p {
  color: var(--text-medium);
  line-height: 1.7;
}

.faq-item {
  background: var(--white);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--alpine-green);
}

.faq-item h3 {
  color: var(--alpine-green-dark);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.faq-item p {
  color: var(--text-medium);
  line-height: 1.7;
}

.disclaimer-box {
  background: #FFF8E1;
  border: 2px solid #FFB300;
  border-radius: 10px;
  padding: 2rem;
  margin: 3rem 0;
}

.disclaimer-box h3 {
  color: #F57C00;
  margin-bottom: 1rem;
}

.disclaimer-box p {
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.cta-box {
  background: linear-gradient(135deg, var(--alpine-green), var(--alpine-green-dark));
  color: var(--white);
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  margin: 3rem 0;
}

.cta-box h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-box p {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: var(--white);
  color: var(--alpine-green);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  color: var(--alpine-green);
}

.contact-form {
  max-width: 600px;
  margin: 3rem auto;
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--alpine-green);
}

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

.footer {
  background: #1B5E20;
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(27, 94, 32, 0.98);
  color: var(--white);
  padding: 1.5rem;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
  z-index: 9999;
  display: none;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  line-height: 1.6;
}

.cookie-btn {
  background: var(--white);
  color: var(--alpine-green);
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
}

.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  overflow-y: auto;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: var(--white);
  margin: 2rem auto;
  padding: 2.5rem;
  border-radius: 12px;
  max-width: 700px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.modal-close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-medium);
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
}

.modal-close:hover {
  color: var(--text-dark);
}

.modal-content h2 {
  color: var(--alpine-green);
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}

.modal-content h3 {
  color: var(--alpine-green-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.modal-content p,
.modal-content ul {
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.modal-content ul {
  padding-left: 1.5rem;
}

.modal-content li {
  margin-bottom: 0.5rem;
}

.success-message {
  display: none;
  background: #E8F5E9;
  border: 2px solid var(--alpine-green);
  color: var(--alpine-green-dark);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1rem;
  text-align: center;
}

.success-message.show {
  display: block;
}

@media (max-width: 768px) {
  .nav {
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
  }

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

  .hero p {
    font-size: 1.05rem;
  }

  section {
    padding: 3rem 0;
  }

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

  .content-with-image {
    flex-direction: column !important;
  }

  .content-with-image img {
    max-width: 100%;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
  }

  .modal-content {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.65rem;
  }

  .nav {
    font-size: 0.8rem;
    gap: 0.75rem;
  }

  .logo {
    font-size: 1.25rem;
  }

  .logo img {
    width: 32px;
    height: 32px;
  }
}
