* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #212529;
  line-height: 1.6;
}

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

.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

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

.nav-link:hover {
  color: #28a745;
}

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

.hero-section h1 {
  color: #212529;
  line-height: 1.2;
}

.hero-section .lead {
  color: #495057;
  font-size: 1.1rem;
}

.btn-success {
  background-color: #28a745;
  border-color: #28a745;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-success:hover {
  background-color: #218838;
  border-color: #1e7e34;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.btn-outline-success {
  color: #28a745;
  border-color: #28a745;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-success:hover {
  background-color: #28a745;
  border-color: #28a745;
  transform: translateY(-2px);
}

.feature-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  font-size: 3rem;
  line-height: 1;
}

.value-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid #f8f9fa;
}

.value-card:hover {
  border-color: #28a745;
  transform: translateY(-3px);
}

.value-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.contact-info-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #28a745;
}

.page-header {
  border-bottom: 3px solid #28a745;
}

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

.contact-form .form-control:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.15);
}

.contact-form label {
  color: #495057;
  margin-bottom: 8px;
}

.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.thank-you-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #28a745;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: bold;
  margin: 0 auto;
}

.policy-content h2 {
  color: #212529;
  margin-top: 30px;
}

.policy-content h4,
.policy-content h5 {
  color: #495057;
}

.policy-content ul {
  color: #6c757d;
  margin-left: 20px;
}

.policy-content a {
  color: #28a745;
  text-decoration: underline;
}

.policy-content a:hover {
  color: #218838;
}

.cta-section {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: #fff;
}

.cta-section h2 {
  color: #fff;
}

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

.cta-section .btn-success {
  background-color: #fff;
  color: #28a745;
  border-color: #fff;
}

.cta-section .btn-success:hover {
  background-color: #f8f9fa;
  color: #218838;
}

.footer {
  margin-top: 0;
}

.footer h5 {
  color: #fff;
  margin-bottom: 20px;
}

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

.footer a:hover {
  color: #28a745;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #212529;
  color: #fff;
  padding: 20px 0;
  z-index: 9999;
  display: none;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-banner p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.cookie-banner a {
  color: #28a745;
  text-decoration: underline;
}

.cookie-banner a:hover {
  color: #20c997;
}

.services-section img {
  object-fit: cover;
  height: 100%;
  max-height: 400px;
}

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

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

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

  .btn-lg {
    padding: 10px 25px;
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .feature-card,
  .value-card {
    margin-bottom: 20px;
  }

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

  .services-section img {
    max-height: 300px;
    margin-bottom: 20px;
  }

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

  .cookie-banner .col-md-4 {
    margin-top: 10px;
  }
}

@media (min-width: 992px) {
  .hero-section img {
    max-height: 500px;
    object-fit: cover;
  }
}
