:root {
  --primary-blue: #2A3B4C;
  --accent-lime: #A8D94C;
  --accent-orange: #F4A261;
  --white: #F8FAFC;
  --dark-blue: #1a2634;
  --light-gray: #f0f2f5;
  --text-dark: #2c3e50;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.75;
  font-size: 17px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Exo 2', 'Poppins', sans-serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

h1 {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-lime) 50%, var(--accent-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-blue);
}

h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-blue);
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

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

a:hover {
  color: var(--accent-lime);
  text-decoration: underline;
}

header {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

header.scrolled {
  background: linear-gradient(135deg, var(--primary-blue), rgba(42, 59, 76, 0.95));
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

header.scrolled a {
  color: var(--white);
}

header.scrolled a:hover {
  color: var(--accent-lime);
}

.navbar {
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

header.scrolled .navbar-brand {
  color: var(--white);
}

.navbar-brand img {
  height: 40px;
  width: 40px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-lime), var(--accent-orange));
  transition: width 0.3s ease;
}

.nav-links a:hover:after {
  width: 100%;
}

header.scrolled .nav-links a {
  color: var(--white);
}

section {
  padding: 120px 2rem;
}

section.full-width {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}

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

.hero-section {
  position: relative;
  height: 600px;
  background: linear-gradient(135deg, rgba(42, 59, 76, 0.7), rgba(168, 217, 76, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/hero-alpine-herbs.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-content h1 {
  color: #ffffff;
  font-size: 4rem;
  background: none;
  -webkit-text-fill-color: unset;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-lime), var(--accent-orange));
  color: var(--primary-blue);
}

.btn-primary:hover {
  transform: scale(1.06);
  box-shadow: 0 0 30px rgba(168, 217, 76, 0.4);
  animation: pulse 0.6s ease-in-out;
}

.btn-secondary {
  background-color: var(--primary-blue);
  color: #ffffff;
}

.btn-secondary:hover {
  background-color: var(--dark-blue);
  transform: scale(1.06);
  box-shadow: 0 0 30px rgba(42, 59, 76, 0.4);
  animation: pulse 0.6s ease-in-out;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 30px rgba(168, 217, 76, 0.4);
  }
  50% {
    box-shadow: 0 0 50px rgba(168, 217, 76, 0.7);
  }
}

.card {
  background: #ffffff;
  border: 2px solid var(--light-gray);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-12px);
  border-color: var(--accent-lime);
  box-shadow: 0 20px 40px rgba(168, 217, 76, 0.2);
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  transition: transform 0.4s ease;
}

.card:hover img {
  transform: translateY(-8px) scale(1.03);
}

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

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-column img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.disclaimer-block {
  background: linear-gradient(135deg, rgba(42, 59, 76, 0.05), rgba(168, 217, 76, 0.05));
  border-left: 4px solid var(--accent-orange);
  border-radius: 8px;
  padding: 2rem;
  margin: 3rem 0;
}

.disclaimer-block h3 {
  color: var(--accent-orange);
  margin-top: 0;
}

.disclaimer-block p {
  margin-bottom: 0.75rem;
}

footer {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 3rem 2rem;
  margin-top: 3rem;
}

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

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

.footer-section p, .footer-section a {
  color: rgba(248, 250, 252, 0.8);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(248, 250, 252, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
  color: rgba(248, 250, 252, 0.7);
  font-size: 0.9rem;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-lime);
  box-shadow: 0 0 0 3px rgba(168, 217, 76, 0.1);
}

.form-disclaimer {
  background-color: var(--light-gray);
  border-radius: 8px;
  padding: 1rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
}

th {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 1rem;
  text-align: left;
  font-weight: 700;
}

td {
  padding: 1rem;
  border-bottom: 1px solid var(--light-gray);
}

tr:hover {
  background-color: rgba(168, 217, 76, 0.1);
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-blue);
  color: var(--white);
  padding: 1.5rem 2rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: none;
}

.cookie-banner.active {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
}

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

.cookie-buttons button {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.cookie-accept {
  background: var(--accent-lime);
  color: var(--primary-blue);
}

.cookie-accept:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(168, 217, 76, 0.4);
}

.cookie-reject {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.cookie-reject:hover {
  background: rgba(248, 250, 252, 0.1);
}

.cookie-learn {
  background: var(--accent-orange);
  color: #ffffff;
}

.cookie-learn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

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

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.35rem;
  }

  section {
    padding: 80px 1.5rem;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .nav-links {
    gap: 1rem;
  }

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

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

  .cookie-banner.active {
    flex-direction: column;
    align-items: flex-start;
  }

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