:root {
  --primary-color: #3C6E52;
  --primary-hover: #2d5440;
  --text-color: #2c3e50;
  --light-bg: #f8fafa;
  --white: #ffffff;
  --gray-light: #e8ecef;
  --gray-medium: #b8c4ce;
  --border-radius: 10px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

h2 {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}

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

p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 15px rgba(60, 110, 82, 0.08);
  padding: 1.25rem 0;
  z-index: 1000;
  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;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.9;
}

.logo-img {
  width: 45px;
  height: 45px;
  margin-right: 12px;
  border-radius: 8px;
}

.logo-text {
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}

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

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--primary-color);
  cursor: pointer;
}

section {
  padding: 90px 0;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(rgba(60, 110, 82, 0.15), rgba(60, 110, 82, 0.25)), url('../images/hero-alpine-stream.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: 80px;
}

.hero-content {
  text-align: center;
  color: var(--white);
  max-width: 850px;
  padding: 3rem;
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border-radius: var(--border-radius);
}

.hero h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: 1.35rem;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  background-color: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--primary-hover);
  color: var(--white);
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(60, 110, 82, 0.3);
}

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

.content-with-image img {
  max-width: 380px;
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 25px rgba(60, 110, 82, 0.12);
}

.content-with-image.image-left img {
  order: -1;
}

.text-content {
  flex: 1;
}

.highlight-box {
  background-color: var(--light-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
  margin: 2rem 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin: 3rem 0;
}

.product-card {
  background-color: var(--light-bg);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(60, 110, 82, 0.15);
}

.product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
}

.product-card h3 {
  margin-bottom: 1rem;
}

.product-card ul {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.product-card ul li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
}

.product-card ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.faq-item {
  background-color: var(--light-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
}

.faq-item h3 {
  margin-bottom: 1rem;
}

.disclaimer-box {
  background-color: #fff8e6;
  border: 2px solid #f4d03f;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  margin: 3rem 0;
}

.disclaimer-box h3 {
  color: #d68910;
  margin-bottom: 1.25rem;
}

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

.contact-content {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
}

.contact-info h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 0.75rem;
}

.contact-form {
  flex: 1;
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 20px rgba(60, 110, 82, 0.1);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-light);
  border-radius: var(--border-radius);
  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(--primary-color);
}

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

.footer {
  background-color: var(--text-color);
  color: var(--white);
  padding: 4rem 0 2rem;
}

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

.footer h3 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer p {
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.footer a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer a:hover {
  opacity: 1;
  text-decoration: underline;
}

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

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

.footer-links button {
  background: none;
  border: none;
  color: var(--white);
  padding: 0;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  text-align: left;
}

.footer-links button:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.8;
}

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

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

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

.cookie-banner p {
  margin: 0;
  flex: 1;
}

.cookie-banner .btn {
  white-space: nowrap;
}

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

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

.modal-content {
  background-color: var(--white);
  margin: 2rem;
  padding: 3rem;
  border-radius: var(--border-radius);
  max-width: 800px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

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

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

.success-message {
  background-color: #d4edda;
  border: 2px solid #28a745;
  color: #155724;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin-top: 1rem;
  display: none;
}

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

@media (max-width: 992px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(60, 110, 82, 0.1);
    gap: 1rem;
  }

  .nav-menu.show {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

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

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

  .contact-content {
    flex-direction: column;
    gap: 2rem;
  }

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

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

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.85rem;
  }

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

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

@media (max-width: 576px) {
  section {
    padding: 60px 0;
  }

  .hero {
    min-height: 90vh;
  }

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

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