:root {
  --primary-red: #dc3545;
  --dark-gray: #2d2d2d;
  --medium-gray: #6c757d;
  --light-gray: #f8f9fa;
  --white: #ffffff;
}

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

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

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

.hero-image {
  position: relative;
  width: 100%;
  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;
}

.hero-content {
  max-width: 800px;
}

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

.btn-danger:hover {
  background-color: #c82333;
  border-color: #bd2130;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

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

.btn-outline-danger:hover {
  background-color: var(--primary-red);
  border-color: var(--primary-red);
  color: var(--white);
  transform: translateY(-2px);
}

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

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

.text-danger {
  color: var(--primary-red);
}

.bg-danger {
  background-color: var(--primary-red);
}

.page-header {
  padding: 60px 0;
}

.info-box {
  border-left: 4px solid var(--primary-red);
}

.routine-step {
  transition: all 0.3s ease;
}

.routine-step:hover {
  border-color: var(--primary-red);
  box-shadow: 0 4px 8px rgba(220, 53, 69, 0.1);
}

.advantage-item {
  padding: 1rem 0;
}

.feature-box {
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.product-card {
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.product-details {
  font-size: 0.9rem;
  color: var(--medium-gray);
}

.contact-info a {
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.thank-you-box {
  margin-top: 50px;
  margin-bottom: 50px;
}

.policy-content h2 {
  color: var(--dark-gray);
  padding-top: 1rem;
}

.policy-content h3 {
  color: var(--dark-gray);
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  display: none;
}

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

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

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

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

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

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

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

@media (max-width: 576px) {
  .btn-lg {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }

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