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

:root {
  --alpen-green: #336B48;
  --alpen-green-dark: #2a5739;
  --alpen-green-light: #4a8660;
  --text-primary: #2c3e50;
  --text-secondary: #5a6c7d;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --border-color: #e1e8ed;
}

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

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-top: 3rem;
}

h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  color: var(--text-primary);
}

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

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

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

.header {
  background-color: var(--bg-white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--alpen-green);
  cursor: pointer;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

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

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

body {
  padding-top: 80px;
}

.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: white;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(51, 107, 72, 0.85), rgba(42, 87, 57, 0.75));
}

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

.hero h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.95);
  margin-bottom: 2rem;
}

.section {
  padding: 80px 0;
}

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

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

.content-with-image .text-content {
  flex: 1;
}

.content-with-image img {
  width: 350px;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

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

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.card h3 {
  color: var(--alpen-green);
  margin-top: 0;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  background-color: var(--alpen-green);
  color: white;
  border-radius: 8px;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background-color: var(--alpen-green-dark);
  color: white;
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background-color: var(--alpen-green);
  color: white;
}

.info-box {
  background-color: #f0f7f4;
  border-left: 4px solid var(--alpen-green);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.info-box h3 {
  margin-top: 0;
  color: var(--alpen-green);
}

.faq-item {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.faq-item h3 {
  margin-top: 0;
  color: var(--alpen-green);
  font-size: 1.15rem;
}

.faq-item p {
  margin-bottom: 0;
}

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

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

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

.form-control:focus {
  outline: none;
  border-color: var(--alpen-green);
}

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

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

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

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

.footer a {
  color: rgba(255,255,255,0.8);
  display: block;
  margin-bottom: 0.5rem;
}

.footer a:hover {
  color: white;
}

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

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

.modal-dialog {
  position: relative;
  margin: 3rem auto;
  max-width: 700px;
}

.modal-content {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  position: relative;
}

.modal-header {
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.modal-title {
  color: var(--alpen-green);
  font-size: 1.75rem;
  margin: 0;
}

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

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

.modal-body {
  padding: 2rem;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
}

.modal-body h3 {
  color: var(--alpen-green);
  margin-top: 1.5rem;
}

.modal-body h3:first-child {
  margin-top: 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.1);
  padding: 1.5rem;
  z-index: 1500;
  display: none;
}

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

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

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

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

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.65rem;
  }
  
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .content-with-image {
    flex-direction: column;
  }
  
  .content-with-image.reverse {
    flex-direction: column;
  }
  
  .content-with-image img {
    width: 100%;
    max-width: 100%;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-actions {
    width: 100%;
  }
  
  .cookie-actions .btn {
    flex: 1;
  }
}

.text-center {
  text-align: center;
}

.disclaimer-badge {
  background-color: #fff3cd;
  border: 1px solid #ffc107;
  color: #856404;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  margin: 1rem 0;
  display: inline-block;
}
