:root {
  --primary-red: #d32f2f;
  --primary-red-dark: #b71c1c;
  --text-dark: #212121;
  --text-light: #757575;
  --bg-light: #fafafa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
}

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

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-white);
}

.header-main {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-white);
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-red);
}

.logo:hover {
  color: var(--primary-red-dark);
  text-decoration: none;
}

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

.navbar-light .navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary-red);
}

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

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

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

.hero-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  color: var(--bg-white);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

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

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

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

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

.card {
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.step-card {
  padding: 2rem 1rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-red);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.principle-box {
  background-color: var(--bg-light);
  padding: 1.5rem;
  border-left: 4px solid var(--primary-red);
  margin-bottom: 1.5rem;
}

.principle-box h3 {
  color: var(--primary-red);
}

.testimonial-card {
  background-color: var(--bg-white);
  padding: 2rem;
  border-left: 4px solid var(--primary-red);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-author {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--primary-red);
}

.faq-item {
  background-color: var(--bg-light);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 8px;
}

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

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

.footer {
  margin-top: 3rem;
}

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

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

.page-header {
  background-color: var(--bg-light);
}

.mission-card {
  padding: 2rem;
  background-color: var(--bg-light);
  border-radius: 8px;
  height: 100%;
}

.mission-card h3 {
  color: var(--primary-red);
  margin-bottom: 1rem;
}

.principle-list {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
}

.principle-item {
  margin-bottom: 1.5rem;
}

.principle-item:last-child {
  margin-bottom: 0;
}

.principle-item h3 {
  color: var(--primary-red);
  margin-bottom: 0.5rem;
}

.contact-form .form-control {
  border: 2px solid var(--border-color);
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-red);
  box-shadow: none;
}

.contact-info {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
}

.contact-item h3 {
  color: var(--primary-red);
}

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

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

.legal-content {
  line-height: 1.8;
}

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

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

.legal-section h3 {
  color: var(--text-dark);
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

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

.legal-section a {
  color: var(--primary-red);
}

.legal-section a:hover {
  color: var(--primary-red-dark);
}

.disclaimer-highlight {
  background-color: var(--bg-light);
  padding: 2rem;
  border-left: 4px solid var(--primary-red);
}

.disclaimer-warning {
  background-color: #fff3e0;
  padding: 1rem;
  border-left: 4px solid #ff9800;
  margin: 1rem 0;
}

.lifestyle-card {
  background-color: var(--bg-white);
  padding: 1rem;
  border-radius: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--bg-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 p {
  margin: 0;
}

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

.cookie-banner .btn-light {
  background-color: var(--bg-white);
  color: var(--text-dark);
}

.cookie-banner .btn-outline-light {
  border-color: var(--bg-white);
  color: var(--bg-white);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-image {
    height: 300px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .cookie-banner .text-right {
    text-align: left !important;
    margin-top: 1rem;
  }
}
