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

:root {
  --primary-color: #2d6a4f;
  --success-color: #40916c;
  --accent-color: #52b788;
  --dark-bg: #1b263b;
  --light-bg: #f8f9fa;
  --text-dark: #1b263b;
  --text-secondary: #5a6c7d;
  --border-light: #e9ecef;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

.text-muted {
  color: #9ca3af !important;
}

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

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

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

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

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
}

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

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

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
}

.btn-light {
  background-color: #ffffff;
  border-color: #ffffff;
  color: var(--primary-color);
  font-weight: 600;
}

.btn-light:hover {
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-block {
  display: block;
  width: 100%;
}

.navbar {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.brand-accent {
  color: var(--primary-color);
  font-weight: 700;
}

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

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

.hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero-section h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-section .lead {
  font-size: 1.1rem;
  line-height: 1.8;
}

.hero-section img {
  max-height: 400px;
  object-fit: cover;
}

.page-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.benefits-section {
  padding: 5rem 0;
}

.benefit-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-width: 4px !important;
}

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

.benefit-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
}

.benefit-card p {
  font-size: 0.95rem;
}

.types-section {
  padding: 5rem 0;
}

.type-card {
  transition: transform 0.3s ease;
}

.type-card:hover {
  transform: translateY(-5px);
}

.type-card img {
  height: 250px;
  object-fit: cover;
}

.type-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.testimonials-section {
  padding: 5rem 0;
}

.testimonial-card {
  transition: box-shadow 0.3s ease;
  border-left: 4px solid var(--success-color);
}

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

.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.8;
}

.cta-section {
  padding: 4rem 0;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-content {
  padding: 5rem 0;
}

.about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

.about-content ul {
  font-size: 0.95rem;
  line-height: 2;
}

.value-card {
  transition: transform 0.3s ease;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 0.5rem;
}

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

.services-section {
  padding: 5rem 0;
}

.services-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.services-section h5 {
  font-size: 1rem;
  font-weight: 700;
}

.services-section ul {
  font-size: 0.95rem;
  padding-left: 1.5rem;
}

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

.why-section {
  padding: 5rem 0;
}

.why-section h4 {
  font-size: 1.1rem;
  font-weight: 700;
}

.contact-section {
  padding: 5rem 0;
}

.contact-info-box {
  background: var(--light-bg);
  border-radius: 0.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.contact-info-box:hover {
  transform: translateY(-3px);
}

.form-group label {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-control {
  border: 1px solid var(--border-light);
  border-radius: 0.375rem;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(45, 106, 79, 0.25);
}

.form-control::placeholder {
  color: #b0b9c6;
}

.custom-checkbox .custom-control-label {
  cursor: pointer;
  user-select: none;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.thank-you-section {
  padding: 5rem 0;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.thank-you-box {
  background: var(--light-bg);
  border-radius: 0.5rem;
  border-left: 4px solid var(--success-color);
}

.thank-you-box h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.message-details {
  background: #ffffff;
  border: 1px solid var(--border-light);
}

.legal-section {
  padding: 5rem 0;
  min-height: 600px;
}

.legal-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.legal-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

.legal-section p {
  font-size: 0.95rem;
  line-height: 1.8;
}

.legal-section ul {
  font-size: 0.95rem;
  line-height: 1.9;
  padding-left: 1.5rem;
}

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

footer {
  background-color: var(--dark-bg);
  color: #ffffff;
}

footer h5 {
  font-weight: 700;
  font-size: 0.95rem;
}

footer p {
  font-size: 0.85rem;
  line-height: 1.8;
}

footer a {
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--accent-color) !important;
}

.border-bottom {
  border-bottom: 1px solid var(--border-light) !important;
}

.border-left {
  border-left-width: 4px !important;
}

.border-secondary {
  border-color: #495057 !important;
}

.rounded {
  border-radius: 0.5rem !important;
}

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

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

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

  .display-4 {
    font-size: 1.75rem !important;
  }

  .lead {
    font-size: 0.95rem !important;
  }

  .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
  }

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

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

  .benefit-card,
  .testimonial-card,
  .type-card,
  .value-card {
    margin-bottom: 1.5rem;
  }

  .type-card img {
    height: 200px;
  }

  .hero-section img {
    max-height: 300px;
  }

  .services-section h2,
  .about-content h2 {
    font-size: 1.5rem;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

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

@media (max-width: 576px) {
  .hero-section {
    min-height: 400px;
  }

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

  .display-4 {
    font-size: 1.5rem !important;
  }

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

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

  .form-control {
    font-size: 0.9rem;
  }

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

  footer .row {
    text-align: center;
  }

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

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  padding: 1rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-text {
  flex: 1;
  min-width: 200px;
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: flex-start;
  }

  .cookie-buttons .btn {
    flex: 1;
    min-width: 120px;
  }
}
