:root {
  --primary-color: #2c7fb8;
  --primary-hover: #1e5a8a;
  --secondary-color: #5da8d8;
  --accent-color: #89c4e8;
  --text-dark: #1a1a1a;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #dee2e6;
}

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

.brand-logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.brand-logo-footer {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bg-white);
}

.navbar {
  transition: all 0.3s ease;
}

.navbar-brand:hover .brand-logo {
  color: var(--primary-hover);
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

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

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 127, 184, 0.3);
}

.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: white;
}

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-image {
  position: relative;
  min-height: 500px;
}

.hero-image img {
  object-fit: cover;
  height: 500px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
  display: flex;
  align-items: center;
}

.hero-content {
  color: white;
  max-width: 600px;
}

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

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

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

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

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

.product-card {
  height: 100%;
}

.product-description {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.product-features {
  background-color: var(--bg-light);
  padding: 1rem;
  border-radius: 0.25rem;
  margin-top: 1rem;
}

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

.benefits-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

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

.testimonial-card {
  background-color: var(--bg-light);
  border-radius: 0.5rem;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
}

.testimonial-text {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

.cta-section h2 {
  font-weight: 700;
}

.cta-section .btn-primary {
  background-color: white;
  color: var(--primary-color);
  border-color: white;
}

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

.footer {
  margin-top: 4rem;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(26, 26, 26, 0.95);
  color: white;
  padding: 1rem 0;
  z-index: 9999;
  display: none;
}

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

.cookie-banner p {
  margin-bottom: 0.5rem;
}

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

.page-header {
  background-color: var(--bg-light);
  border-bottom: 3px solid var(--primary-color);
}

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

.contact-info-box h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.legal-content {
  min-height: 70vh;
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section h2 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border-color);
}

.legal-section h4 {
  color: var(--text-dark);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-section ul,
.legal-section ol {
  margin-left: 1.5rem;
}

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

.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  background-color: var(--bg-light);
  border-radius: 1rem;
  padding: 3rem;
}

.checkmark-circle {
  display: inline-block;
}

.value-card {
  background-color: var(--bg-light);
  border-radius: 0.5rem;
  height: 100%;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-3px);
}

.value-card h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.routine-steps {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 0.5rem;
}

.routine-step h5 {
  color: var(--primary-color);
  font-weight: 600;
}

.accordion .card {
  border: 1px solid var(--border-color);
  margin-bottom: 0.5rem;
}

.accordion .card-header {
  background-color: white;
  padding: 0;
}

.accordion .btn-link {
  color: var(--text-dark);
  text-decoration: none;
  padding: 1rem;
  font-weight: 500;
}

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

.table th {
  background-color: var(--primary-color);
  color: white;
}

@media (max-width: 768px) {
  .hero-image img {
    height: 400px;
  }

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

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

  .cookie-banner {
    padding: 1.5rem 0;
  }

  .thank-you-content {
    padding: 2rem 1rem;
  }
}
