:root {
  --primary-color: #27a745;
  --secondary-color: #1f3a93;
  --dark-color: #1a1a1a;
  --light-color: #f8f9fa;
  --text-color: #333333;
  --border-color: #e0e0e0;
  --white: #ffffff;
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  background-color: var(--white);
  line-height: 1.6;
}

html,
body {
  height: 100%;
}

main {
  min-height: calc(100vh - 200px);
}

.bg-primary {
  background-color: var(--secondary-color) !important;
}

.btn-primary {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
}

.btn-success {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: var(--white) !important;
}

.btn-success:hover {
  background-color: #20c997 !important;
  border-color: #20c997 !important;
}

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

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

.text-success {
  color: var(--primary-color) !important;
}

.bg-success {
  background-color: var(--primary-color) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-white-50:hover {
  color: var(--white) !important;
}

header {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  color: var(--secondary-color) !important;
  font-size: 1.5rem;
}

.navbar-nav .nav-link {
  color: var(--text-color) !important;
  margin-left: 1rem;
  transition: color 0.3s ease;
}

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

.hero-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #2952b3 100%);
  padding: 4rem 0;
}

.hero-section h1 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none !important;
}

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

.card-title {
  font-weight: 600;
}

.card-text {
  color: var(--text-color);
}

.benefit-item,
.service-card,
.testimonial-card {
  padding: 1.5rem;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.benefit-item:hover,
.service-card:hover,
.testimonial-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card {
  background-color: var(--light-color);
}

.testimonial-card {
  background-color: var(--white);
  border-left: 4px solid var(--primary-color);
}

.section-title {
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 2rem;
}

.page-header {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #2952b3 100%);
}

.page-header h1 {
  font-weight: 700;
}

.contact-form .form-control {
  border-color: var(--border-color);
  padding: 0.75rem;
  font-size: 1rem;
}

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

.contact-info-card {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: 0.5rem;
  text-align: center;
}

.contact-info-card h5 {
  margin-bottom: 1rem;
}

.contact-info-card p {
  font-size: 1.1rem;
}

.contact-info-card a {
  text-decoration: none;
  color: inherit;
}

.contact-info-card a:hover {
  color: var(--primary-color);
}

.thank-you-content {
  text-align: center;
  padding: 2rem;
}

.thank-you-content h1 {
  color: var(--primary-color);
}

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

.policy-content h2 {
  color: var(--secondary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

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

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

.policy-content p {
  margin-bottom: 1rem;
  color: var(--text-color);
}

.sidebar-info {
  border-top: 4px solid var(--primary-color);
}

footer {
  background-color: var(--dark-color);
  color: var(--white);
  margin-top: 3rem;
}

footer h5 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

footer a:hover {
  color: var(--primary-color);
}

.cookie-banner {
  background-color: var(--dark-color);
  color: var(--white);
  padding: 1rem;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner p {
  margin-bottom: 0;
}

.cookie-banner .btn-link {
  color: var(--primary-color);
  text-decoration: none;
  margin-right: 1rem;
}

.cookie-banner .btn-link:hover {
  text-decoration: underline;
}

.list-unstyled li {
  margin-bottom: 0.5rem;
}

.list-unstyled li span {
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }

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

  .navbar-nav .nav-link {
    margin-left: 0;
    padding: 0.5rem 0;
  }

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

  .cookie-banner .col-md-8,
  .cookie-banner .col-md-4 {
    margin-bottom: 1rem;
  }

  .cookie-banner .text-md-right {
    text-align: left !important;
  }

  .contact-form {
    margin-top: 2rem;
  }

  footer .row {
    flex-direction: column;
  }

  footer .col-md-3 {
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  body {
    font-size: 0.95rem;
  }

  .hero-section {
    padding: 2rem 0;
  }

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

  .card-body {
    padding: 1rem;
  }

  .benefit-item,
  .service-card,
  .testimonial-card {
    padding: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  footer h5 {
    font-size: 1rem;
  }

  .cookie-banner {
    bottom: 0;
  }

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