:root {
  --primary-green: #28a745;
  --dark-green: #1e7e34;
  --light-green: #d4edda;
  --text-dark: #212529;
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
}

* {
  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 {
  padding: 1rem 0;
}

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

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

.nav-link:hover,
.nav-link.active {
  color: var(--primary-green) !important;
}

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

.hero-section h1 {
  color: var(--text-dark);
}

.hero-section .lead {
  color: var(--text-muted);
  font-size: 1.15rem;
}

.section-padding {
  padding: 60px 0;
}

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

.page-header h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

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

.policy-header {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
  color: var(--white);
  padding: 60px 0 40px;
  text-align: center;
}

.policy-header h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.policy-header .lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

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

.policy-content h4 {
  font-weight: 600;
}

.policy-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-content a {
  color: var(--primary-green);
  text-decoration: underline;
}

.policy-content a:hover {
  color: var(--dark-green);
}

.icon-circle {
  width: 60px;
  height: 60px;
  background-color: var(--light-green);
  color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.advantage-icon {
  font-size: 3rem;
}

.category-card {
  padding: 1.5rem;
}

.target-card {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
  height: 100%;
}

.target-card ul {
  list-style-type: none;
  padding-left: 0;
}

.target-card ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.target-card ul li:before {
  content: "✓";
  color: var(--primary-green);
  font-weight: bold;
  position: absolute;
  left: 0;
}

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

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

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

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

.btn-success:hover {
  background-color: var(--dark-green);
  border-color: var(--dark-green);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

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

.btn-outline-success:hover {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  transform: translateY(-2px);
}

.footer-section {
  background-color: #212529;
  color: var(--white);
  padding: 60px 0 20px;
  margin-top: 80px;
}

.footer-section h5 {
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-section ul {
  list-style: none;
  padding: 0;
}

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

.footer-link {
  margin-left: 1rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer-link:hover {
  color: var(--white);
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(33, 37, 41, 0.98);
  color: var(--white);
  padding: 20px 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

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

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

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

.service-card,
.product-card {
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: box-shadow 0.3s ease;
}

.service-card:hover,
.product-card:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-features,
.product-features {
  margin: 1.5rem 0;
}

.service-features ul,
.product-features ul {
  list-style-type: none;
  padding-left: 0;
}

.service-features ul li,
.product-features ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.service-features ul li:before,
.product-features ul li:before {
  content: "✓";
  color: var(--primary-green);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto;
}

.contact-info-card {
  background-color: var(--bg-light);
  padding: 1.5rem;
  border-radius: 8px;
}

.contact-form-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

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

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

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  background-color: var(--light-green);
  color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: bold;
  margin: 0 auto;
}

.thank-you-actions {
  margin-top: 2rem;
}

.value-card,
.feature-circle {
  text-align: center;
}

.value-icon {
  font-size: 3rem;
}

.feature-circle {
  width: 60px;
  height: 60px;
  background-color: var(--light-green);
  color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

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

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

  .section-padding {
    padding: 40px 0;
  }

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

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

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

  .footer-section {
    text-align: center;
  }

  .footer-link {
    display: block;
    margin: 0.5rem 0;
  }

  .cookie-banner .col-md-4 {
    text-align: center !important;
    margin-top: 1rem;
  }

  .btn-lg {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.5rem;
  }

  .hero-section h1 {
    font-size: 1.75rem;
  }

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

  .thank-you-actions .btn {
    display: block;
    width: 100%;
    margin: 0.5rem 0 !important;
  }
}
