:root {
  --alpine-green: #0B5E3A;
  --alpine-light: #f8faf9;
  --alpine-gray: #4a5555;
  --text-color: #2c3333;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text-color);
  line-height: 1.7;
  background: linear-gradient(to bottom, #ffffff 0%, #f8fdf9 100%);
  min-height: 100vh;
}

header {
  background: white;
  box-shadow: 0 2px 8px rgba(11, 94, 58, 0.08);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(11, 94, 58, 0.1);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--alpine-green);
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
  text-decoration: none;
}

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

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

.nav-menu a:hover {
  color: var(--alpine-green);
  text-decoration: none;
}

main {
  margin-top: 80px;
}

.hero {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: var(--alpine-light);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 10;
  width: 90%;
  max-width: 800px;
  background: rgba(11, 94, 58, 0.92);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.95;
  line-height: 1.6;
}

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

.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--alpine-green);
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--alpine-green);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.section-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.image-left {
  float: left;
  margin: 0 2rem 1.5rem 0;
  max-width: 400px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(11, 94, 58, 0.12);
}

.image-right {
  float: right;
  margin: 0 0 1.5rem 2rem;
  max-width: 400px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(11, 94, 58, 0.12);
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.info-box {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(11, 94, 58, 0.08);
  margin-bottom: 2rem;
  border-left: 4px solid var(--alpine-green);
}

.disclaimer-box {
  background: #fff9f0;
  padding: 2rem;
  border-radius: 8px;
  margin: 3rem 0;
  border: 2px solid #ffd699;
}

.disclaimer-box h3 {
  color: #b8860b;
  margin-bottom: 1rem;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(11, 94, 58, 0.08);
}

thead {
  background: var(--alpine-green);
  color: white;
}

th {
  padding: 1rem;
  text-align: left;
  font-weight: 500;
}

td {
  padding: 1rem;
  border-bottom: 1px solid #e8f0ed;
}

tbody tr:hover {
  background: var(--alpine-light);
}

.faq-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(11, 94, 58, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(11, 94, 58, 0.12);
}

.faq-question {
  font-weight: 600;
  color: var(--alpine-green);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.faq-answer {
  color: var(--alpine-gray);
  line-height: 1.7;
}

.cta-section {
  background: linear-gradient(135deg, var(--alpine-green) 0%, #0d7a4a 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 12px;
  margin: 3rem 0;
}

.cta-section h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.btn-primary {
  background: white;
  color: var(--alpine-green);
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  color: var(--alpine-green);
  text-decoration: none;
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(11, 94, 58, 0.08);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  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: 150px;
}

.contact-info {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(11, 94, 58, 0.08);
  margin-bottom: 2rem;
}

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

.contact-info p {
  margin-bottom: 0.5rem;
  color: var(--alpine-gray);
}

footer {
  background: #1a2e2a;
  color: #e0e7e5;
  padding: 3rem 0 1.5rem;
  margin-top: 5rem;
}

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

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

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

.footer-section p,
.footer-section a {
  color: #b8c9c4;
  text-decoration: none;
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: white;
  text-decoration: underline;
}

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

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

.footer-bottom {
  border-top: 1px solid #2d4540;
  padding-top: 1.5rem;
  text-align: center;
  color: #8a9e99;
  font-size: 0.9rem;
}

.disclaimer-footer {
  background: #fff3e0;
  padding: 1.5rem;
  border-radius: 6px;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 500;
  color: #b8860b;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  z-index: 2000;
  display: none;
}

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

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

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

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

.btn-accept {
  background: var(--alpine-green);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn-accept:hover {
  background: #0d7a4a;
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .hero {
    height: 400px;
  }

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

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

  .hero-content {
    padding: 2rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .image-left,
  .image-right {
    float: none;
    margin: 0 0 1.5rem 0;
    max-width: 100%;
  }

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

  .cookie-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-accept {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .hero-content {
    padding: 1.5rem;
  }
}
