:root {
  --primary-color: #8b2635;
  --primary-dark: #6b1e29;
  --primary-light: #a53344;
  --text-dark: #2c2c2c;
  --text-medium: #5a5a5a;
  --text-light: #8a8a8a;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
}

* {
  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;
  overflow-x: hidden;
}

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

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

.nav-link {
  font-weight: 500;
  color: var(--text-medium);
  transition: color 0.3s ease;
}

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

.hero-section {
  position: relative;
  height: 600px;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.content-section {
  position: relative;
}

.content-section p {
  font-size: 1.05rem;
  color: var(--text-medium);
  line-height: 1.8;
}

.info-card,
.habit-card,
.value-card {
  padding: 2rem;
  background: var(--bg-white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.info-card:hover,
.habit-card:hover,
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.info-card h4,
.habit-card h4,
.value-card h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.product-card {
  padding: 2rem;
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  transition: border-color 0.3s ease, transform 0.3s ease;
  height: 100%;
}

.product-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
}

.product-card h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.product-info {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: var(--bg-white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.testimonial-card {
  padding: 2rem;
  background: var(--bg-white);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: 100%;
}

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

.testimonial-card .author {
  font-weight: 600;
  color: var(--primary-color);
  font-style: normal;
}

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

.faq-item h5 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

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

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

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

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

.footer {
  margin-top: 4rem;
}

.footer h5 {
  color: var(--bg-white);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

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

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

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

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

.contact-form-wrapper {
  background: var(--bg-white);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

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

.contact-info-card {
  padding: 2rem;
  background: var(--bg-white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.policy-content h2 {
  color: var(--primary-color);
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  color: var(--text-dark);
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

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

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

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

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

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
}

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

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

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

  .content-section p {
    font-size: 1rem;
  }

  .contact-form-wrapper {
    padding: 2rem;
  }
}
