:root {
  --primary-color: #007bff;
  --primary-dark: #0056b3;
  --secondary-color: #6c757d;
  --dark-color: #212529;
  --light-color: #f8f9fa;
  --white: #ffffff;
  --text-color: #333333;
}

* {
  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-color);
  line-height: 1.6;
  padding-top: 76px;
}

.navbar {
  transition: all 0.3s ease;
}

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

.nav-link {
  font-weight: 500;
  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: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header {
  position: relative;
  height: 400px;
  overflow: hidden;
}

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

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

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  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 8px rgba(0, 0, 0, 0.2);
}

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

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

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

.planning-card {
  transition: transform 0.3s ease;
}

.planning-card:hover {
  transform: translateX(5px);
}

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

.custom-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

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

.faq-item {
  padding: 1.5rem;
  background: var(--white);
  border-left: 4px solid var(--primary-color);
  border-radius: 4px;
}

.faq-item h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

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

.cookie-consent p {
  font-size: 0.9rem;
}

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

.contact-card {
  transition: transform 0.3s ease;
}

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

.thank-you-box {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.legal-section h2 {
  color: var(--primary-color);
  margin-top: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--light-color);
}

.legal-section h4 {
  color: var(--secondary-color);
  margin-top: 1.5rem;
}

.principle-card,
.habit-item {
  transition: transform 0.3s ease;
}

.principle-card:hover,
.habit-item:hover {
  transform: translateX(5px);
}

footer {
  margin-top: 3rem;
}

footer a {
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--white);
  text-decoration: none;
}

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

  .hero-overlay h1,
  .header-overlay h1 {
    font-size: 2rem;
  }

  body {
    padding-top: 64px;
  }
}

@media (max-width: 576px) {
  .hero-section,
  .page-header {
    height: 300px;
  }

  .display-4 {
    font-size: 1.75rem;
  }
}
