@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Lato:wght@400;700&family=Merriweather:wght@400;700&display=swap');

:root {
  --deep-blue: #1a3a52;
  --light-gray: #e8e8e8;
  --nature-green: #2d6a4f;
  --gold: #d4af37;
  --dark-gray: #333333;
  --white: #ffffff;
  --light-blue: #3d5a80;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--deep-blue);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--light-blue);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--deep-blue);
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}

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

.navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--deep-blue);
  text-decoration: none;
}

.navbar-brand:hover {
  color: var(--nature-green);
}

.nav-link {
  font-family: 'Lato', sans-serif;
  color: var(--dark-gray);
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--nature-green);
}

main {
  margin-top: 80px;
  padding: 0;
}

.hero {
  width: 100%;
  height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(26, 58, 82, 0.4);
}

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

.hero h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1rem;
}

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

.section {
  padding: 80px 0;
  border-bottom: 1px solid var(--light-gray);
}

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

.section:nth-child(3n) {
  background-color: rgba(45, 106, 79, 0.05);
}

.section-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  margin-bottom: 2rem;
}

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

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

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

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--light-gray);
}

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

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

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--dark-gray);
}

.image-block {
  border-radius: 8px;
  overflow: hidden;
}

.image-block img {
  width: 100%;
  height: auto;
  display: block;
}

.content-text {
  color: var(--dark-gray);
  font-size: 1rem;
  line-height: 1.8;
}

.content-text ul, .content-text ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.content-text li {
  margin-bottom: 0.5rem;
}

.full-width-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 80px calc(50vw - 50%);
  background-color: var(--deep-blue);
  color: var(--white);
}

.full-width-section h2 {
  color: var(--white);
}

.full-width-section p {
  color: rgba(255, 255, 255, 0.9);
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--nature-green);
  color: var(--white);
  border-color: var(--nature-green);
}

.btn-primary:hover {
  background-color: var(--deep-blue);
  border-color: var(--deep-blue);
  color: var(--white);
}

.btn-secondary {
  background-color: transparent;
  color: var(--deep-blue);
  border-color: var(--deep-blue);
}

.btn-secondary:hover {
  background-color: var(--deep-blue);
  color: var(--white);
  border-color: var(--deep-blue);
}

footer {
  background-color: var(--deep-blue);
  color: var(--white);
  padding: 60px 0 30px;
  margin-top: 80px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section p, .footer-section a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  text-decoration: none;
  line-height: 1.6;
}

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

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

.disclaimer {
  background-color: rgba(212, 175, 55, 0.1);
  border-left: 4px solid var(--gold);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer p {
  margin: 0;
  color: var(--deep-blue);
  font-size: 0.95rem;
}

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

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

.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--light-gray);
  border-radius: 6px;
  font-family: 'Merriweather', serif;
  font-size: 1rem;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--nature-green);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-top: 1px solid var(--light-gray);
  padding: 1.5rem;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.1);
  z-index: 999;
  max-height: 200px;
  overflow-y: auto;
}

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

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

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  color: var(--dark-gray);
  line-height: 1.6;
}

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

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

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

.cookie-accept:hover {
  background-color: var(--deep-blue);
}

.cookie-reject {
  background-color: var(--light-gray);
  color: var(--deep-blue);
}

.cookie-reject:hover {
  background-color: #d0d0d0;
}

.cookie-learn {
  background-color: transparent;
  color: var(--nature-green);
  border: 2px solid var(--nature-green);
}

.cookie-learn:hover {
  background-color: var(--nature-green);
  color: var(--white);
}

.success-message {
  background-color: var(--nature-green);
  color: var(--white);
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 8px;
  margin: 2rem 0;
}

.success-message h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .hero {
    height: 400px;
  }

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

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

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

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cookie-content {
    flex-direction: column;
    gap: 1rem;
  }

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

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

  main {
    margin-top: 70px;
  }

  .section {
    padding: 50px 0;
  }

  header {
    padding: 0.75rem 0;
  }

  .section-content {
    padding: 0 1.5rem;
  }
}

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

  h2 {
    font-size: 1.2rem;
  }

  h3 {
    font-size: 1rem;
  }

  p {
    font-size: 0.95rem;
  }

  .hero {
    height: 300px;
  }

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

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

  .cookie-btn {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-in-out;
}

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