:root {
  --primary-color: #1a4d7a;
  --primary-dark: #0d3153;
  --secondary-color: #5a8fb8;
  --accent-color: #e8f4f8;
  --text-dark: #2c3e50;
  --text-light: #5a6c7d;
  --bg-light: #f8f9fa;
  --border-color: #e0e6ed;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

* {
  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 {
  padding: 1rem 0;
  background-color: #fff;
}

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

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

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  margin-left: 1.5rem;
}

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

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

.hero-section {
  position: relative;
  margin-bottom: 3rem;
}

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

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.hero-content h1 {
  color: var(--primary-color);
  font-weight: 700;
}

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

.section-title {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 4rem 0;
  margin-bottom: 3rem;
}

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

.product-card,
.target-card,
.collection-card {
  transition: transform 0.3s ease;
}

.product-card:hover,
.target-card:hover,
.collection-card:hover {
  transform: translateY(-5px);
}

.product-card img,
.target-card img,
.collection-card img {
  border-radius: 10px;
}

.info-box,
.benefit-box,
.value-box,
.value-card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  height: 100%;
}

.disclaimer-box {
  background: var(--accent-color);
  padding: 2rem;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
}

.routine-steps .routine-step {
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  height: 100%;
}

.testimonial-author {
  color: var(--text-light);
  font-style: italic;
  margin-top: 1rem;
}

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

.faq-item:last-child {
  border-bottom: none;
}

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

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

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

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
  padding: 0.75rem 2rem;
}

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

.footer {
  background-color: var(--text-dark);
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer h5 {
  color: white;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer a:hover {
  color: white;
  text-decoration: underline;
}

.footer ul {
  padding-left: 0;
}

.footer li {
  margin-bottom: 0.5rem;
}

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

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

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

.product-detail-card {
  background: white;
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
  height: 100%;
}

.product-image-wrapper {
  height: 300px;
  overflow: hidden;
}

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

.product-info {
  padding: 1.5rem;
}

.product-description {
  margin-bottom: 1.5rem;
}

.product-details p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.contact-info .contact-item {
  padding: 1rem 0;
}

.contact-form .form-control {
  border-radius: 5px;
  border: 1px solid var(--border-color);
  padding: 0.75rem;
}

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

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

.thank-you-box {
  background: white;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.legal-content {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.legal-content h2 {
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.legal-content h3 {
  color: var(--primary-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.legal-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

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

.transparency-box {
  background: var(--accent-color);
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem 0;
}

.transparency-list {
  list-style-type: none;
  padding-left: 1rem;
}

.transparency-list li:before {
  content: "✓ ";
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 0.5rem;
}

.why-box {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.disclaimer-content .alert {
  border-radius: 10px;
  padding: 1.5rem;
}

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

  .hero-content {
    position: static;
    transform: none;
    margin-top: -50px;
    margin-bottom: 2rem;
  }

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

  .page-header {
    padding: 2rem 0;
  }
}
