:root {
  --primary-color: #22392e;
  --secondary-color: #f9f7f3;
  --accent-color: #4a6b5a;
  --text-dark: #2c2c2c;
  --text-light: #666666;
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: #ffffff;
}

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.navbar-brand {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 700;
}

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

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  margin-left: 1rem;
  transition: color 0.3s ease;
}

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

.hero-section {
  position: relative;
  height: 500px;
  overflow: hidden;
  margin-bottom: 3rem;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(34, 57, 46, 0.7), rgba(34, 57, 46, 0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-overlay h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-overlay .lead {
  font-size: 1.3rem;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 4rem 0;
  margin-bottom: 3rem;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.content-section h2 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.content-section h3 {
  color: var(--accent-color);
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.content-section p {
  color: var(--text-light);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.bg-light {
  background-color: var(--secondary-color);
}

.disclaimer-box {
  background-color: var(--secondary-color);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 8px;
}

.limitations-section {
  background-color: var(--secondary-color);
}

.limitations-box {
  background-color: white;
  border: 2px solid var(--primary-color);
  padding: 2rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.limitations-box p {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.img-fluid {
  border-radius: 8px;
  margin-bottom: 1rem;
}

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

footer h5 {
  font-weight: 700;
  margin-bottom: 1rem;
}

footer p,
footer a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: white;
}

footer ul li {
  margin-bottom: 0.5rem;
}

.footer-disclaimer {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.75rem;
  border-radius: 5px;
  margin-top: 1rem;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  color: white;
  padding: 1rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  display: none;
}

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

.cookie-banner p {
  margin: 0;
  display: inline-block;
  margin-right: 1rem;
}

.cookie-banner .btn {
  border-radius: 50px;
}

.legal-content h2 {
  margin-top: 2rem;
  font-size: 1.75rem;
}

.legal-content h3 {
  font-size: 1.3rem;
}

.legal-content ul {
  margin-left: 2rem;
}

.contact-info {
  background-color: var(--secondary-color);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(74, 107, 90, 0.25);
}

@media (max-width: 768px) {
  .hero-section {
    height: 350px;
  }

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

  .hero-overlay .lead {
    font-size: 1.1rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

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

  .content-section h2 {
    font-size: 1.5rem;
  }

  .cookie-banner p {
    display: block;
    margin-bottom: 0.5rem;
  }
}
