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

:root {
  --alpine-green: #2E5F42;
  --alpine-green-dark: #1e3d2b;
  --alpine-green-light: #3a7554;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-light: #7a7a7a;
  --background: #ffffff;
  --background-soft: #f8f9fa;
  --border-color: #e5e5e5;
  --shadow: rgba(46, 95, 66, 0.08);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-primary);
  background: var(--background);
  overflow-x: hidden;
}

h1, h2, h3 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.2rem;
  line-height: 1.85;
  color: var(--text-secondary);
}

a {
  color: var(--alpine-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--alpine-green-dark);
}

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  padding: 1.2rem 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--alpine-green);
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

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

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

.nav-links a:hover {
  color: var(--alpine-green);
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #ffffff;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 61, 43, 0.75), rgba(46, 95, 66, 0.65));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

section {
  padding: 85px 0;
}

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

.section-header {
  text-align: center;
  margin-bottom: 65px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  color: var(--alpine-green);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 50px;
}

.two-col-layout img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 40px var(--shadow);
}

.content-block {
  padding: 20px 0;
}

.content-block h3 {
  color: var(--alpine-green);
  margin-bottom: 1rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.info-card {
  background: var(--background);
  padding: 35px;
  border-radius: 8px;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow);
}

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

.info-card p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.product-card {
  background: var(--background);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow);
}

.product-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.product-info {
  padding: 30px;
}

.product-info h3 {
  color: var(--alpine-green);
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
}

.product-info p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--alpine-green);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn:hover {
  background: var(--alpine-green-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow);
}

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

.btn-outline:hover {
  background: var(--alpine-green);
  color: #ffffff;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--background);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 2px 15px var(--shadow);
}

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

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

.disclaimer-box {
  background: var(--background-soft);
  border-left: 4px solid var(--alpine-green);
  padding: 40px;
  border-radius: 8px;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-box h3 {
  color: var(--alpine-green);
  margin-bottom: 1rem;
}

.disclaimer-box p {
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.contact-section {
  max-width: 900px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
}

.contact-info h3 {
  color: var(--alpine-green);
  margin-bottom: 1.5rem;
}

.contact-detail {
  margin-bottom: 1.5rem;
}

.contact-detail strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.contact-detail p {
  color: var(--text-secondary);
  margin: 0;
}

.contact-form {
  background: var(--background-soft);
  padding: 40px;
  border-radius: 8px;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

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

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

.final-cta {
  text-align: center;
  background: var(--alpine-green);
  color: #ffffff;
  padding: 80px 20px;
}

.final-cta h2 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .btn {
  background: #ffffff;
  color: var(--alpine-green);
}

.final-cta .btn:hover {
  background: var(--background-soft);
  transform: translateY(-2px);
}

footer {
  background: var(--text-primary);
  color: #ffffff;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-about h3 {
  color: var(--alpine-green-light);
  margin-bottom: 1rem;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-links h4 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

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

.footer-links ul li {
  margin-bottom: 0.7rem;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--alpine-green-light);
}

.footer-contact h4 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin: 0;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  overflow-y: auto;
  padding: 40px 20px;
}

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

.modal-content {
  background: #ffffff;
  max-width: 800px;
  width: 100%;
  border-radius: 8px;
  padding: 50px;
  position: relative;
  max-height: 85vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: var(--text-light);
  cursor: pointer;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

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

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

.modal-content h3 {
  color: var(--alpine-green);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.modal-content p,
.modal-content ul {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.modal-content ul {
  padding-left: 20px;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-primary);
  color: #ffffff;
  padding: 25px;
  z-index: 1500;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

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

.cookie-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  flex: 1;
}

.cookie-content button {
  background: var(--alpine-green);
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.cookie-content button:hover {
  background: var(--alpine-green-light);
}

.success-message {
  background: var(--alpine-green);
  color: #ffffff;
  padding: 15px 25px;
  border-radius: 8px;
  margin-top: 20px;
  display: none;
  text-align: center;
}

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

.educational-notice {
  background: #f0f7f4;
  border: 2px solid var(--alpine-green);
  border-radius: 8px;
  padding: 25px;
  margin: 40px 0;
  text-align: center;
}

.educational-notice p {
  margin: 0;
  color: var(--alpine-green-dark);
  font-weight: 600;
  font-size: 1.05rem;
}

@media (max-width: 992px) {
  .two-col-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  h1 {
    font-size: 2.4rem;
  }

  h2 {
    font-size: 1.9rem;
  }
}

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

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

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

  section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 45px;
  }

  .modal-content {
    padding: 35px 25px;
  }

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

  .info-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }
}
