:root {
  --primary-color: #7fa86c;
  --primary-dark: #6b8f5a;
  --primary-light: #9bc084;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 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(--white);
}

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

.navbar-light .navbar-nav .nav-link {
  color: var(--text-dark);
  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);
}

.text-primary {
  color: var(--primary-color) !important;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--shadow);
}

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

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--shadow);
}

.hero-section {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.page-header {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
  color: var(--white);
}

.page-header h1 {
  color: var(--white);
}

.page-header .lead {
  color: rgba(255, 255, 255, 0.95);
}

.content-section {
  padding: 80px 0;
}

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

.section-text {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.card {
  border: none;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-img-top {
  border-radius: 12px 12px 0 0;
  height: 250px;
  object-fit: cover;
}

.card-title {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.25rem;
}

.info-box {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
  color: var(--white);
}

.cta-section h3 {
  color: var(--white);
  font-weight: 700;
}

.cta-section .lead {
  color: rgba(255, 255, 255, 0.95);
}

.cta-section .btn-primary {
  background: var(--white);
  color: var(--primary-color);
}

.cta-section .btn-primary:hover {
  background: var(--bg-light);
  color: var(--primary-dark);
}

.cta-section .btn-outline-primary {
  border-color: var(--white);
  color: var(--white);
}

.cta-section .btn-outline-primary:hover {
  background: var(--white);
  color: var(--primary-color);
}

.footer {
  margin-top: 80px;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(44, 62, 80, 0.98);
  color: var(--white);
  padding: 1.5rem 0;
  box-shadow: 0 -4px 20px var(--shadow);
  z-index: 9999;
  display: none;
}

.cookie-banner p {
  color: var(--white);
  margin-bottom: 0;
}

.cookie-banner .btn-primary {
  background: var(--primary-color);
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.rounded {
  border-radius: 12px !important;
}

.shadow {
  box-shadow: 0 8px 25px var(--shadow) !important;
}

.shadow-sm {
  box-shadow: 0 2px 10px var(--shadow) !important;
}

.contact-form-wrapper {
  background: var(--bg-light);
  padding: 2.5rem;
  border-radius: 12px;
}

.form-control {
  border-radius: 8px;
  border: 2px solid #dee2e6;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(127, 168, 108, 0.25);
}

.policy-content h2 {
  color: var(--primary-color);
}

.policy-content ul {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.8;
}

.success-icon {
  display: inline-block;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0 40px;
  }

  .page-header {
    padding: 60px 0 40px;
  }

  .content-section {
    padding: 50px 0;
  }

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

  .section-text {
    font-size: 1rem;
  }

  .display-4 {
    font-size: 2.5rem;
  }
}
