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

:root {
  --primary-blue: #1e5fa8;
  --dark-blue: #0d3d7a;
  --light-bg: #f8f9fa;
  --text-dark: #1a1a1a;
  --text-secondary: #6c757d;
  --border-light: #dee2e6;
}

html,
body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans",
    "Droid Sans", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text-dark);
  line-height: 1.6;
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--dark-blue);
}

.brand-q {
  color: var(--primary-blue);
  font-weight: 900;
  font-size: 1.5rem;
}

.navbar-brand {
  font-size: 1.5rem;
  color: var(--text-dark) !important;
  letter-spacing: -0.5px;
}

.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

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

.btn-secondary {
  background-color: var(--text-secondary);
  border-color: var(--text-secondary);
  color: white;
  font-weight: 600;
}

.btn-secondary:hover {
  background-color: #5a6268;
  border-color: #5a6268;
}

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

.btn-light:hover {
  background-color: var(--light-bg);
  border-color: var(--light-bg);
}

.hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 3rem 0;
}

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

.benefits-section {
  background-color: var(--light-bg);
}

.benefit-icon {
  font-size: 2.5rem;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1) !important;
}

.product-card {
  border: 1px solid var(--border-light);
}

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

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

.cta-section:hover {
  background-color: var(--dark-blue);
  transition: background-color 0.3s ease;
}

.badge-primary {
  background-color: var(--primary-blue) !important;
  color: white;
  font-weight: 600;
}

.testimonials-section {
  background-color: white;
}

.testimonials-section .card {
  border-top: 4px solid var(--primary-blue);
}

.italic {
  font-style: italic;
}

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.form-control {
  border: 1px solid var(--border-light);
  padding: 0.75rem;
  border-radius: 0.375rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(30, 95, 168, 0.25);
}

.form-check-input {
  border: 1px solid var(--border-light);
  cursor: pointer;
}

.form-check-input:checked {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.legal-content h3 {
  color: var(--text-dark);
  margin-top: 2rem;
}

.legal-content p {
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul {
  margin-left: 1.5rem;
  line-height: 1.8;
}

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

footer {
  background-color: #1a1a1a;
  margin-top: auto;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--light-bg);
  border-top: 2px solid var(--border-light);
  z-index: 999;
  display: none;
}

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

.rounded-lg {
  border-radius: 0.5rem;
}

.shadow {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.shadow-sm {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.text-balance {
  text-wrap: balance;
}

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

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

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

  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .btn-block {
    width: 100%;
  }

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

  .card {
    margin-bottom: 1rem;
  }

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

  .benefit-icon {
    font-size: 2rem;
  }

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

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

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }

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

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

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

  .btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

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

  .card {
    margin-bottom: 1rem;
  }

  .product-card img {
    height: 150px;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

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

  .cookie-banner .col-md-4 {
    margin-top: 1rem;
  }
}
