: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;
  padding-top: 70px;
}

.navbar {
  transition: all 0.3s ease;
}

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

.nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
}

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

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

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

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

.info-section .icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  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);
}

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

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

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

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

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

.tip-card {
  background: var(--white);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
  padding-top: 60px;
}

.tip-number {
  position: absolute;
  top: 20px;
  left: 25px;
  width: 40px;
  height: 40px;
  background: var(--primary-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.stars {
  color: #ffc107;
  font-size: 1.2rem;
}

.testimonial-author h6 {
  color: var(--text-dark);
  margin-top: 15px;
}

.accordion .card {
  border: 1px solid #dee2e6;
  margin-bottom: 10px;
}

.accordion .card-header {
  background: var(--white);
  border-bottom: none;
}

.accordion .btn-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  width: 100%;
  text-align: left;
  padding: 15px 20px;
}

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

.cta-section {
  background: var(--primary-green);
}

.page-header {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
  color: var(--white);
  padding: 100px 0 60px;
  margin-top: -70px;
  padding-top: 140px;
}

.page-header h1 {
  margin-bottom: 10px;
}

.contact-form .form-control {
  border: 2px solid #e9ecef;
  padding: 12px 15px;
  border-radius: 5px;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-green);
  box-shadow: none;
}

.contact-info-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

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

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

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

.step-card {
  background: var(--bg-light);
  padding: 20px;
  border-radius: 8px;
  height: 100%;
}

.policy-content {
  font-size: 1rem;
  line-height: 1.8;
}

.policy-section h2 {
  color: var(--text-dark);
  margin-top: 20px;
}

.policy-section h4 {
  margin-top: 15px;
}

.policy-section ul {
  margin-bottom: 15px;
}

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

.policy-section a:hover {
  text-decoration: underline;
}

.footer {
  margin-top: 80px;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(33, 37, 41, 0.95);
  color: var(--white);
  padding: 20px 0;
  z-index: 9999;
  display: none;
  animation: slideUp 0.5s ease;
}

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

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

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

.cookie-banner .btn {
  padding: 8px 20px;
  font-weight: 500;
}

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

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

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

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

  .contact-info-card {
    margin-top: 30px;
  }

  .cookie-banner .btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .cookie-banner .btn:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 576px) {
  body {
    padding-top: 60px;
  }

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

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

  .btn-lg {
    padding: 12px 25px;
    font-size: 1rem;
  }
}
