:root {
  --primary: #708090;
  --accent-sage: #A9B79B;
  --accent-terracotta: #E08B5C;
  --cream: #F8F7F3;
  --dark: #2a2a2a;
  --light-gray: #f5f5f5;
}

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

html, body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark);
  background-color: var(--cream);
  line-height: 1.6;
}

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

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

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

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

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

nav a:hover {
  color: var(--accent-terracotta);
}

main {
  margin-top: 80px;
}

.hero {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, rgba(112, 128, 144, 0.7) 0%, rgba(169, 183, 155, 0.6) 100%), url('images/hero-landscape.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 1.3rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
  max-width: 700px;
}

section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-alt {
  background-color: white;
}

h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 2rem;
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 600;
}

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

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.two-column.reverse {
  direction: rtl;
}

.two-column.reverse > * {
  direction: ltr;
}

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

.card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  border-left: 4px solid var(--accent-sage);
}

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

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

.card ul, .card ol {
  margin-left: 1.5rem;
  line-height: 1.8;
}

.card li {
  margin-bottom: 0.8rem;
}

.cta-link {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--accent-terracotta);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
  font-weight: 600;
}

.cta-link:hover {
  background-color: #d67a4a;
}

.disclaimer {
  background-color: #f9f9f9;
  border-left: 4px solid var(--accent-sage);
  padding: 1.5rem;
  border-radius: 4px;
  margin: 3rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

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

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

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

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

.footer-section a {
  color: #c0c0c0;
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-section p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #c0c0c0;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  padding: 1.5rem 2rem;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  color: var(--dark);
  min-width: 300px;
}

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

.cookie-btn {
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

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

.cookie-accept:hover {
  background-color: #98a689;
}

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

.cookie-decline:hover {
  background-color: #f0f0f0;
}

.cookie-learn {
  background-color: white;
  border: 1px solid #ddd;
  color: var(--dark);
}

.cookie-learn:hover {
  background-color: #f5f5f5;
}

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

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

input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

textarea {
  resize: vertical;
  min-height: 150px;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-terracotta);
  box-shadow: 0 0 0 3px rgba(224, 139, 92, 0.1);
}

.form-disclaimer {
  background-color: #fffaf0;
  border-left: 4px solid var(--accent-terracotta);
  padding: 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1.5rem;
}

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

button {
  padding: 0.75rem 2rem;
  background-color: var(--accent-terracotta);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #d67a4a;
}

.thank-you-container {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 600px;
  margin: 2rem auto;
}

.thank-you-container h1 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.thank-you-container p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  header {
    padding: 0.75rem 0;
  }

  .header-container {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  main {
    margin-top: 120px;
  }

  .hero {
    height: 350px;
  }

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

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

  section {
    padding: 3rem 1rem;
  }

  h2 {
    font-size: 1.8rem;
  }

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

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

  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .cookie-text {
    min-width: auto;
  }

  .cookie-buttons {
    justify-content: center;
  }

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