:root {
  --primary-color: #9b7fd6;
  --primary-dark: #7d5fb8;
  --primary-light: #c4aee8;
  --accent-color: #6ea8d3;
  --text-dark: #2c2c2c;
  --text-light: #5a5a5a;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --success-color: #4caf50;
  --footer-bg: #2c2c2c;
}

* {
  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;
  background-color: var(--bg-white);
}

.brand-logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.navbar {
  transition: all 0.3s ease;
}

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

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

.hero-image {
  position: relative;
  height: 600px;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(155, 127, 214, 0.85) 0%, rgba(110, 168, 211, 0.75) 100%);
  display: flex;
  align-items: center;
}

.hero-content {
  color: var(--bg-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-content h1 {
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

.lead {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.6;
}

.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);
  box-shadow: 0 4px 12px rgba(155, 127, 214, 0.3);
}

.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);
  transform: translateY(-2px);
}

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

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

.card-title {
  color: var(--primary-color);
  font-weight: 600;
}

.feature-box {
  padding: 2rem;
  background-color: var(--bg-white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.routine-card {
  padding: 1.5rem;
  background-color: var(--bg-light);
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

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

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

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

.testimonial-card {
  padding: 2rem;
  background-color: var(--bg-white);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1rem;
}

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

.accordion .card {
  border: 1px solid var(--border-color);
  margin-bottom: 0.5rem;
}

.accordion .card-header {
  background-color: var(--bg-light);
  padding: 0;
}

.accordion .btn-link {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
}

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

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

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

.page-header h1 {
  color: var(--bg-white);
}

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

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

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

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(155, 127, 214, 0.25);
}

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

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

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

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

.disclaimer-list {
  list-style-type: none;
  margin-left: 0;
}

.disclaimer-list li:before {
  content: "✗ ";
  color: #e74c3c;
  font-weight: bold;
  margin-right: 0.5rem;
}

.thank-you-content {
  padding: 3rem 1rem;
}

.checkmark-circle {
  width: 80px;
  height: 80px;
  background-color: var(--success-color);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.checkmark {
  width: 40px;
  height: 40px;
  border: 4px solid var(--bg-white);
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  margin-bottom: 10px;
}

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

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

.footer h5,
.footer h6 {
  color: var(--bg-white);
  font-weight: 600;
}

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

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

.footer-links a,
.footer-link {
  color: var(--bg-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-link:hover {
  color: var(--primary-light);
}

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

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-dark);
  color: var(--bg-white);
  padding: 1.5rem 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none;
}

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

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

.cookie-consent .btn-light {
  background-color: var(--bg-white);
  color: var(--primary-dark);
  border: none;
  font-weight: 600;
}

.cookie-consent .btn-light:hover {
  background-color: var(--bg-light);
}

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

.cookie-consent .btn-outline-light:hover {
  background-color: var(--bg-white);
  color: var(--primary-dark);
}

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

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

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

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

@media (max-width: 576px) {
  .btn-lg {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
  }
}

img {
  max-width: 100%;
  height: auto;
}

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

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

.rounded {
  border-radius: 8px !important;
}
