:root {
  --primary-green: #2d8659;
  --primary-green-dark: #1f6041;
  --secondary-green: #5cb85c;
  --light-green: #d4edda;
  --dark-gray: #343a40;
  --light-gray: #f8f9fa;
  --white: #ffffff;
  --text-dark: #333333;
  --text-muted: #6c757d;
}

* {
  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;
  overflow-x: hidden;
}

.navbar-brand strong {
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}

.navbar {
  transition: all 0.3s ease;
}

.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-green);
}

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

.hero-image {
  position: relative;
  max-height: 600px;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(45, 134, 89, 0.85) 0%, rgba(31, 96, 65, 0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-success {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  transition: all 0.3s ease;
}

.btn-success:hover {
  background-color: var(--primary-green-dark);
  border-color: var(--primary-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 134, 89, 0.3);
}

.btn-outline-success {
  color: var(--primary-green);
  border-color: var(--primary-green);
}

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

.service-icon .icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 2rem;
  font-weight: bold;
}

.benefit-box {
  padding: 2rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: all 0.3s ease;
}

.benefit-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.benefit-box h5 {
  color: var(--primary-green);
  margin-bottom: 1rem;
  font-weight: 600;
}

.audience-list {
  list-style: none;
  padding: 0;
}

.audience-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e9ecef;
  position: relative;
  padding-left: 30px;
}

.audience-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: bold;
  font-size: 1.2rem;
}

.audience-list li:last-child {
  border-bottom: none;
}

.card {
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.accordion .btn-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
}

.accordion .btn-link:hover {
  color: var(--primary-green);
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
}

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

.footer a {
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--secondary-green) !important;
  text-decoration: none;
}

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

.contact-info,
.working-hours {
  padding: 1.5rem;
  background: var(--light-gray);
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(45, 134, 89, 0.25);
}

.form-check-input:checked {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

.success-icon {
  text-align: center;
}

.checkmark-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--primary-green);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.5s ease-in-out;
}

.checkmark {
  width: 40px;
  height: 20px;
  border-left: 5px solid var(--white);
  border-bottom: 5px solid var(--white);
  transform: rotate(-45deg);
  margin-bottom: 10px;
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

.policy-content h2 {
  color: var(--primary-green);
  font-weight: 600;
}

.policy-content h4 {
  color: var(--text-dark);
  font-weight: 600;
}

.policy-content ul,
.policy-content p {
  margin-bottom: 1rem;
}

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

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e9ecef;
  position: relative;
  padding-left: 30px;
}

.benefits-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: bold;
  font-size: 1.2rem;
}

.benefits-list li:last-child {
  border-bottom: none;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(52, 58, 64, 0.95);
  color: var(--white);
  padding: 1rem 0;
  z-index: 9999;
  display: none;
  animation: slideUp 0.5s ease-in-out;
}

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

.cookie-banner p {
  margin: 0;
}

.cookie-banner a {
  color: var(--secondary-green);
  text-decoration: underline;
}

.cookie-banner a:hover {
  color: var(--primary-green);
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-image img {
    height: 400px;
  }

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

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

  .benefit-box {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }

  .cookie-banner .btn {
    margin-top: 0.5rem;
    width: 100%;
  }
}

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

  .navbar-brand strong {
    font-size: 1.25rem;
  }
}
