:root {
  --primary-color: #1e5aa8;
  --primary-dark: #154785;
  --primary-light: #2e7ad9;
  --accent-color: #2563eb;
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px 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;
  background-color: var(--bg-white);
}

.brand-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.02em;
}

.navbar {
  padding: 1rem 0;
}

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

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

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

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

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

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

.hero-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.hero-text {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-image {
  box-shadow: var(--shadow-lg);
}

.section-block {
  padding: 5rem 0;
}

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

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
}

.bg-light {
  background-color: var(--bg-light) !important;
}

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

.text-white-75 {
  color: rgba(255, 255, 255, 0.85);
}

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

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

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

.feature-box {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
}

.feature-box h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-box ul {
  margin-bottom: 0;
  padding-left: 1.25rem;
}

.texture-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 0.5rem;
  height: 100%;
  box-shadow: var(--shadow-md);
}

.texture-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.info-box {
  background: var(--bg-light);
  padding: 1rem;
  border-radius: 0.5rem;
  height: 100%;
}

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

.info-box p {
  font-size: 0.875rem;
  margin-bottom: 0;
}

.ritual-quote {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--text-muted);
  border-left: 4px solid var(--primary-color);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}

.routine-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.routine-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.routine-steps {
  padding-left: 1.25rem;
}

.routine-steps li {
  margin-bottom: 0.75rem;
}

.tip-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  height: 100%;
}

.tip-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.tip-card h4 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.ingredient-card {
  background: var(--bg-white);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  height: 100%;
}

.ingredient-card h4 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.combination-box {
  background: var(--bg-white);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
}

.combination-box h5 {
  font-size: 1rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.combination-box p {
  margin-bottom: 0;
  font-size: 0.9375rem;
}

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

.testimonial-stars {
  color: #f59e0b;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author strong {
  display: block;
}

.testimonial-author span {
  color: var(--text-muted);
  font-size: 0.875rem;
}

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

.faq-item h4 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.faq-item p {
  margin-bottom: 0;
  color: var(--text-muted);
}

.cta-section {
  background-color: var(--primary-color);
  padding: 5rem 0;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.page-header {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
  padding: 4rem 0;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-header .lead {
  color: var(--text-muted);
}

.mission-box {
  background: var(--primary-color);
  color: var(--bg-white);
  padding: 2rem;
  border-radius: 0.5rem;
}

.mission-text {
  font-size: 1.25rem;
  margin-bottom: 0;
}

.mission-list {
  padding-left: 1.25rem;
}

.mission-list li {
  margin-bottom: 0.5rem;
}

.principle-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-md);
  height: 100%;
  text-align: center;
}

.principle-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.principle-card h4 {
  margin-bottom: 1rem;
}

.commitment-box {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 0.5rem;
}

.commitment-box ul {
  padding-left: 1.25rem;
  margin-bottom: 0;
}

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

.approach-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

.approach-list li:last-child {
  border-bottom: none;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

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

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(30, 90, 168, 0.1);
}

.contact-info-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 0.5rem;
}

.contact-info-card h4 {
  margin-bottom: 1.5rem;
}

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

.contact-item h6 {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--primary-color);
}

.contact-item p {
  margin-bottom: 0;
}

.contact-info-box {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.contact-info-box h4 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.thank-you-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.thank-you-content {
  text-align: center;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 2rem;
}

.thank-you-content h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.thank-you-content .lead {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.thank-you-actions {
  margin-top: 2rem;
}

.thank-you-actions .btn {
  margin: 0.5rem;
}

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

.legal-content h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

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

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

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

.legal-content address {
  font-style: normal;
  background: var(--bg-light);
  padding: 1rem;
  border-radius: 0.375rem;
  margin: 1rem 0;
}

.legal-content .table {
  margin: 1.5rem 0;
}

.disclaimer-box {
  background: #fef3c7;
  border: 1px solid #f59e0b;
  padding: 2rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}

.disclaimer-box h2 {
  margin-top: 0;
  color: #92400e;
}

.disclaimer-box .lead {
  margin-bottom: 0;
  color: #92400e;
}

.footer {
  background: var(--text-dark);
  color: var(--bg-white);
  padding: 4rem 0 2rem;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer h6 {
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--bg-white);
}

.footer-contact {
  font-style: normal;
}

.footer-contact p {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer hr {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.copyright {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 0;
  z-index: 9999;
  display: none;
}

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

.cookie-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-content p {
  margin-bottom: 0;
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 1rem;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 0.5rem;
  max-width: 500px;
  width: 100%;
}

.cookie-modal-content h4 {
  margin-bottom: 1.5rem;
}

.cookie-option {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.cookie-option:last-of-type {
  border-bottom: none;
}

.cookie-option label {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  cursor: pointer;
}

.cookie-option input[type="checkbox"] {
  margin-right: 0.5rem;
}

.cookie-option strong {
  flex: 1;
}

.cookie-option p {
  width: 100%;
  margin-bottom: 0;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 1.5rem;
}

.cookie-modal-buttons {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.5rem;
}

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

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

  .hero-section {
    padding: 3rem 0;
  }

  .section-block {
    padding: 3rem 0;
  }
}

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

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

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
  }
}
