:root {
  --primary-red: #d32f2f;
  --dark-red: #b71c1c;
  --light-red: #ffebee;
  --text-dark: #212121;
  --text-medium: #424242;
  --text-light: #757575;
  --bg-white: #ffffff;
  --bg-grey: #f5f5f5;
  --border-light: #e0e0e0;
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.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);
}

.hero-section {
  position: relative;
  min-height: 70vh;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
  color: white;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/placeholder.svg?height=800&width=1600") center / cover;
  opacity: 0.15;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.btn-hero {
  background: white;
  color: var(--primary-red);
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: var(--primary-red);
  text-decoration: none;
}

.min-vh-70 {
  min-height: 70vh;
}

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

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

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

.section-text {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 1.25rem;
}

.lead-text {
  font-size: 1.2rem;
  color: var(--text-medium);
}

.rounded-custom {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.habit-card,
.mindful-card {
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.habit-card:hover,
.mindful-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.habit-card h4,
.mindful-card h4 {
  color: var(--primary-red);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.habit-card p,
.mindful-card p {
  color: var(--text-medium);
  margin-bottom: 0;
}

.disclaimer-box {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-red);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.info-box {
  background: var(--light-red);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-red);
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
  color: white;
  padding: 4rem 0;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.btn-cta {
  background: white;
  color: var(--primary-red);
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  color: var(--primary-red);
  text-decoration: none;
}

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

.footer-heading {
  color: var(--primary-red);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-text-small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 0;
}

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

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

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

.footer-links a:hover {
  color: var(--primary-red);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

.page-hero {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
  color: white;
  padding: 4rem 0;
  margin-bottom: 2rem;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.page-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
}

.contact-info h5 {
  color: var(--primary-red);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-info h5:first-child {
  margin-top: 0;
}

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

.form-control:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 0.2rem rgba(211, 47, 47, 0.15);
}

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

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

.thank-you-box {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}

.content-list {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.content-list li {
  color: var(--text-medium);
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

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

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

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

.cookie-text {
  flex: 1;
  margin: 0;
  color: var(--text-medium);
}

.cookie-text a {
  color: var(--primary-red);
  text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-decline {
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cookie-accept {
  background-color: var(--primary-red);
  color: white;
}

.btn-cookie-accept:hover {
  background-color: var(--dark-red);
}

.btn-cookie-decline {
  background-color: var(--bg-grey);
  color: var(--text-dark);
}

.btn-cookie-decline:hover {
  background-color: var(--border-light);
}

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

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

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

  .cta-title {
    font-size: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-legal {
    justify-content: center;
  }

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

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

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

  .btn-hero,
  .btn-cta {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
}
