:root {
  --primary-color: #8b1538;
  --primary-dark: #6b0f2a;
  --primary-light: #a91d47;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --text-muted: #666666;
  --bg-light: #ffffff;
  --bg-cream: #faf8f5;
  --bg-dark: #1a1a1a;
  --border-color: #e0e0e0;
}

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

body {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-light);
  padding-top: 56px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 2px;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

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

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 0;
  transition: all 0.3s ease;
}

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

.btn-outline-light {
  border-radius: 0;
  padding: 0.75rem 2rem;
}

.btn-light {
  background-color: var(--bg-light);
  color: var(--primary-color);
  border-radius: 0;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
}

.btn-light:hover {
  background-color: var(--bg-cream);
  color: var(--primary-dark);
}

.hero-section {
  position: relative;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--text-light);
  width: 100%;
}

.hero-content h1 {
  color: var(--text-light);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero-content .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.page-header {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 80px 0 60px;
  text-align: center;
}

.page-header h1 {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.page-header .lead {
  opacity: 0.9;
}

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

.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--text-light);
}

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

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

.section-cta h2 {
  color: var(--text-light);
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.icon-text {
  color: var(--text-light);
  font-size: 1.5rem;
  font-weight: 400;
}

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

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

.care-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.tip-card {
  background-color: var(--bg-cream);
  border-left: 4px solid var(--primary-color);
}

.tip-card h5 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.ingredient-list li {
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 2px solid var(--primary-color);
}

.combination-step {
  padding-left: 1.5rem;
  border-left: 3px solid var(--primary-color);
}

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

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stars {
  color: var(--primary-light);
  font-size: 1.25rem;
}

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

.testimonial-author {
  color: var(--primary-light);
  font-weight: 400;
  margin-bottom: 0;
}

.accordion .card-header {
  padding: 0;
  border-bottom: 1px solid var(--border-color);
}

.accordion .btn-link {
  padding: 1rem 1.25rem;
  font-weight: 400;
  text-decoration: none;
}

.accordion .btn-link:hover {
  text-decoration: none;
  color: var(--primary-color);
}

.principle-card {
  background-color: var(--bg-cream);
  border-radius: 0;
  transition: transform 0.3s ease;
}

.principle-card:hover {
  transform: translateY(-5px);
}

.principle-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.principle-icon span {
  color: var(--text-light);
  font-size: 1.75rem;
  font-weight: 400;
}

.offer-card {
  background-color: var(--bg-cream);
  border-left: 4px solid var(--primary-color);
  border-radius: 0;
}

.offer-card h5 {
  color: var(--primary-color);
}

.contact-form-wrapper {
  background-color: var(--bg-cream);
}

.contact-item strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.25rem;
}

.schedule-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-item strong {
  color: var(--primary-light);
  display: block;
  margin-bottom: 0.25rem;
}

.thank-you-section {
  min-height: calc(100vh - 300px);
  display: flex;
  align-items: center;
  padding-top: 100px;
}

.thank-you-content {
  background-color: var(--bg-cream);
}

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

.thank-you-icon span {
  color: var(--text-light);
  font-size: 2rem;
}

.legal-content h2 {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.legal-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  margin-top: 1.5rem;
  color: var(--primary-color);
}

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

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

.disclaimer-box {
  background-color: var(--bg-cream);
  border-left: 4px solid var(--primary-color);
}

.footer-main {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.footer-main h5 {
  color: var(--primary-light);
  margin-bottom: 1.25rem;
}

.footer-main a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-main a:hover {
  color: var(--text-light);
  text-decoration: none;
}

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

.footer-main hr {
  border-color: rgba(255, 255, 255, 0.1);
}

.footer-main address {
  font-style: normal;
  opacity: 0.9;
}

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

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

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

.cookie-banner a {
  color: var(--primary-light);
}

.form-control {
  border-radius: 0;
  padding: 0.75rem 1rem;
  border-color: var(--border-color);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(139, 21, 56, 0.25);
}

.img-fluid {
  border-radius: 0;
}

.rounded {
  border-radius: 0 !important;
}

.shadow {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
}

.shadow-sm {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
}

@media (max-width: 991px) {
  .hero-section {
    height: 70vh;
  }

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

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 15px;
  }

  .hero-section {
    height: 60vh;
    min-height: 400px;
  }

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

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

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

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .btn-lg {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
  }

  .cookie-banner .btn {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .cookie-banner .btn:last-child {
    margin-bottom: 0;
  }
}
