:root {
  --primary-color: #3a7bd5;
  --primary-hover: #2c5fa3;
  --secondary-color: #5a9fd4;
  --dark-color: #2c3e50;
  --light-gray: #f8f9fa;
  --border-color: #e0e0e0;
  --text-dark: #333333;
  --text-muted: #6c757d;
}

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

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

.navbar-brand {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 700;
}

.navbar-brand:hover {
  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);
}

.hero-section {
  position: relative;
}

.hero-image {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  color: white;
  text-align: center;
  padding: 2rem;
}

.hero-content h1 {
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  font-size: 1.1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  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 8px rgba(0, 0, 0, 0.2);
}

.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);
}

.card {
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

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

.product-card {
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: 8px;
  background: white;
  transition: box-shadow 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.feature-box {
  padding: 1.5rem;
  background: white;
  border-left: 4px solid var(--primary-color);
}

.routine-step {
  padding: 1.5rem;
  background: var(--light-gray);
  border-radius: 8px;
}

.testimonial-card {
  padding: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.faq-item {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.faq-item h5 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact-info h5 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.value-box {
  padding: 1.5rem;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  height: 100%;
}

.value-box h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

.alert-info {
  background-color: #e8f4f8;
  border-color: var(--secondary-color);
  color: var(--text-dark);
}

footer {
  margin-top: 5rem;
}

footer a {
  transition: opacity 0.3s ease;
}

footer a:hover {
  opacity: 0.8;
  text-decoration: none;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-color);
  color: white;
  padding: 1.5rem 0;
  z-index: 9999;
  display: none;
}

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

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

.cookie-consent a {
  color: white;
  text-decoration: underline;
}

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

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

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

  .cookie-consent .text-right {
    text-align: left;
    margin-top: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-image {
    height: 300px;
  }

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

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