:root {
  --accent-color: #3B6F56;
  --text-primary: #2c3e50;
  --text-secondary: #5a6c7d;
  --background-light: #fafbfc;
  --white: #ffffff;
  --border-light: #e8ecef;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-primary);
  background: var(--white);
}

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

h1 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.8rem;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

p {
  margin-bottom: 1.5rem;
}

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

a:hover {
  opacity: 0.92;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  z-index: 1000;
  padding: 1rem 0;
}

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

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

.logo:hover {
  opacity: 0.92;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
}

.nav-menu a {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
  white-space: nowrap;
}

.nav-menu a:hover {
  color: var(--accent-color);
}

#hero {
  height: 100vh;
  background: linear-gradient(rgba(59, 111, 86, 0.15), rgba(59, 111, 86, 0.15)), url('../images/hero-swiss-nature.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-primary);
  padding: 0 1.5rem;
  margin-top: 70px;
}

.hero-content {
  max-width: 800px;
  background: rgba(255, 255, 255, 0.95);
  padding: 4rem 3rem;
  border-radius: 9px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.hero-content h1 {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.15rem;
  line-height: 2;
  color: var(--text-secondary);
}

section {
  padding: 100px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.section-content {
  padding: 0 1.5rem;
}

.section-with-image {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.section-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 9px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.section-image-left {
  float: left;
  margin: 0 2.5rem 2rem 0;
}

.section-image-right {
  float: right;
  margin: 0 0 2rem 2.5rem;
}

.cta-button {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: var(--accent-color);
  color: var(--white);
  border-radius: 9px;
  font-weight: 500;
  transition: opacity 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-button:hover {
  opacity: 0.92;
  color: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

.product-card {
  background: var(--background-light);
  padding: 2.5rem;
  border-radius: 9px;
  border: 1px solid var(--border-light);
}

.product-card h3 {
  color: var(--accent-color);
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.contact-form {
  max-width: 600px;
  margin: 3rem auto;
  background: var(--background-light);
  padding: 3rem;
  border-radius: 9px;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem;
  border: 1px solid var(--border-light);
  border-radius: 9px;
  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(--accent-color);
}

footer {
  background: var(--background-light);
  padding: 4rem 0 2rem;
  margin-top: 100px;
  border-top: 1px solid var(--border-light);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: var(--accent-color);
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

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

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

.footer-links a {
  cursor: pointer;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: var(--white);
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 9px;
  padding: 3rem;
  position: relative;
  box-shadow: 0 12px 48px rgba(0,0,0,0.2);
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
  padding: 1.5rem;
  z-index: 1500;
  display: none;
}

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

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

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-button {
  padding: 0.7rem 1.5rem;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: opacity 0.3s ease;
  font-size: 0.95rem;
}

.cookie-accept {
  background: var(--accent-color);
  color: var(--white);
}

.cookie-accept:hover {
  opacity: 0.92;
}

.disclaimer-box {
  background: #f8f9fa;
  border-left: 4px solid var(--accent-color);
  padding: 2rem;
  margin: 3rem 0;
  border-radius: 9px;
}

.disclaimer-box p {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.disclaimer-box p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .section-with-image {
    grid-template-columns: 1fr 1fr;
  }
  
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 3.2rem;
  }
  
  h2 {
    font-size: 2.4rem;
  }
}

@media (max-width: 767px) {
  .nav-menu {
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .hero-content {
    padding: 2.5rem 2rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  .section-image-left,
  .section-image-right {
    float: none;
    margin: 0 auto 2rem;
    display: block;
  }
}
