:root {
  --primary-color: #4a9b8e;
  --primary-dark: #3a8070;
  --primary-light: #6db5a8;
  --accent-color: #7ec4b6;
  --text-dark: #2c3e50;
  --text-medium: #546e7a;
  --text-light: #95a5a6;
  --bg-light: #f8fafb;
  --bg-white: #ffffff;
  --border-color: #e0e7eb;
  --shadow: rgba(74, 155, 142, 0.1);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-white);
}

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

.navbar-light .navbar-nav .nav-link {
  color: var(--text-medium);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 500px;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(74, 155, 142, 0.85) 0%, rgba(126, 196, 182, 0.75) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: var(--bg-white);
  padding: 2rem;
}

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

.hero-content .lead {
  font-size: 1.25rem;
  font-weight: 400;
  opacity: 0.95;
}

.page-header {
  background: linear-gradient(135deg, var(--bg-light) 0%, #e8f1ef 100%);
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.content-section p {
  color: var(--text-medium);
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.info-card {
  background: var(--bg-white);
  padding: 1.5rem;
  border-radius: 8px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow);
}

.info-card h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.info-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

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

.bg-info-light {
  background: linear-gradient(135deg, #e8f1ef 0%, var(--bg-light) 100%);
}

.info-box {
  border-left: 4px solid var(--primary-color);
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px var(--shadow);
}

.shadow-sm {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.rounded {
  border-radius: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 1rem 0;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

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

.footer {
  background-color: var(--text-dark);
}

.footer h5,
.footer h6 {
  color: var(--bg-white);
}

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

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

.contact-info h6 {
  color: var(--text-dark);
  font-weight: 600;
}

.form-control {
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0.75rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(74, 155, 142, 0.15);
}

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

.cta-section {
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.75rem;
  }

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

  .hero-image-container {
    height: 400px;
  }

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

  .info-card img {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .hero-image-container {
    height: 350px;
  }

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