:root {
  --primary-color: #4A6E4F;
  --accent-dark: #8B7A6A;
  --accent-light: #E1D3C2;
  --accent-tan: #B8A279;
  --white: #FFFFFF;
  --gray-light: #F5F3F0;
  --gray-medium: #D5D0C8;
  --gray-dark: #3D3D3D;
  --black: #1A1A1A;
}

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

body {
  font-family: 'Merriweather', serif;
  color: var(--gray-dark);
  background-color: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-top: 2rem;
}

h3 {
  font-size: 1.75rem;
  line-height: 1.4;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

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

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

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

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

.nav-menu a {
  text-decoration: none;
  color: var(--gray-dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

main {
  margin-top: 80px;
}

.section {
  padding: 4rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-hero {
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('images/hero-landscape.jpg') center/cover;
  background-attachment: fixed;
  color: var(--white);
  text-align: center;
  padding: 10rem 3rem;
  margin-top: 80px;
}

.section-hero h1 {
  color: var(--white);
  font-size: 3.5rem;
}

.section-hero p {
  color: var(--accent-light);
  font-size: 1.3rem;
}

.section-alt {
  background-color: var(--gray-light);
}

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

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

.two-column-reverse .content {
  order: 2;
}

.two-column-reverse .image {
  order: 1;
}

.image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

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

.card {
  background: var(--white);
  border: 1px solid var(--gray-medium);
  padding: 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.card p {
  margin-bottom: 0;
}

ul, ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

li {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: var(--white);
  border: 1px solid var(--gray-medium);
}

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

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

tr:hover {
  background-color: var(--gray-light);
}

.button {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.button:hover {
  background-color: #3d5640;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 110, 79, 0.3);
}

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

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

.footer-section h4 {
  color: var(--accent-light);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-section ul {
  list-style: none;
  margin-left: 0;
}

.footer-section a {
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.disclaimer {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.95rem;
  color: var(--accent-light);
}

.contact-form {
  max-width: 600px;
  margin: 2rem 0;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--gray-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--gray-medium);
  border-radius: 4px;
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(74, 110, 79, 0.1);
}

.form-disclaimer {
  background-color: var(--gray-light);
  padding: 1.5rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  border-left: 4px solid var(--primary-color);
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gray-dark);
  color: var(--white);
  padding: 1.5rem;
  z-index: 999;
  display: none;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
}

.cookie-consent.show {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.cookie-message {
  flex: 1;
  min-width: 200px;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

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

.cookie-accept:hover {
  background-color: #3d5640;
}

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

.cookie-decline:hover {
  background-color: rgba(255,255,255,0.1);
}

.cookie-learn {
  background-color: transparent;
  color: var(--accent-light);
  border: 1px solid var(--accent-light);
}

.cookie-learn:hover {
  background-color: rgba(225, 211, 194, 0.1);
}

.restriction-block {
  background-color: var(--gray-light);
  border-left: 4px solid var(--accent-dark);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.restriction-block h3 {
  color: var(--accent-dark);
}

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

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

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline-item {
  margin-bottom: 3rem;
  padding-left: 3rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 12px;
  height: 12px;
  background-color: var(--primary-color);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

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

  .nav-menu {
    flex-direction: column;
    gap: 1rem;
  }

  .section {
    padding: 2rem 1rem;
  }

  .section-hero {
    padding: 5rem 1rem;
    margin-top: 120px;
  }

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

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .two-column,
  .two-column-reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .two-column-reverse .content,
  .two-column-reverse .image {
    order: unset;
  }

  .cookie-consent.show {
    flex-direction: column;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

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