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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  padding-top: 76px;
}

.navbar {
  transition: all 0.3s ease;
}

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

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

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

.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--light-green) 0%, #ffffff 100%);
}

.hero-section h1 {
  color: var(--text-dark);
  margin-bottom: 20px;
}

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

.page-header {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, var(--light-green) 0%, #ffffff 100%);
  text-align: center;
}

.section {
  padding: 80px 0;
}

.btn-success {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  padding: 12px 30px;
  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 4px 12px rgba(40, 167, 69, 0.3);
}

.btn-outline-success {
  color: var(--primary-green);
  border-color: var(--primary-green);
  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);
}

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

.icon {
  font-size: 2rem;
}

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

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

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

.benefit-list li {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}

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

.info-box {
  background-color: var(--light-green);
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-green);
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.footer {
  padding: 60px 0 20px;
  margin-top: 80px;
}

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

.footer a:hover {
  opacity: 0.8;
  text-decoration: none;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #343a40;
  color: white;
  padding: 20px 0;
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-consent a {
  color: white;
  text-decoration: underline;
}

.contact-form {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-info-card {
  background: var(--light-green);
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-green);
}

.process-step {
  padding: 20px;
}

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

.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 12px;
}

.custom-list li:before {
  content: "➤";
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: bold;
}

.value-item {
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.thank-you-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  padding: 80px 0;
}

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

.checkmark {
  color: white;
  font-size: 3rem;
  font-weight: bold;
}

.legal-content {
  line-height: 1.8;
}

.legal-content h2 {
  color: var(--primary-green);
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.legal-content h3 {
  color: var(--dark-green);
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.legal-content ul {
  margin-bottom: 20px;
}

.legal-content li {
  margin-bottom: 10px;
}

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

  .section {
    padding: 40px 0;
  }

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

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

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