:root {
  --primary-color: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #3b82f6;
  --secondary-color: #0ea5e9;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --gradient-start: #2563eb;
  --gradient-end: #0ea5e9;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px 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;
  padding-top: 76px;
}

.navbar {
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.75rem;
  color: var(--primary-color) !important;
  transition: color 0.3s ease;
}

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

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

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

.hero-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  color: var(--white);
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-section h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-section p {
  color: rgba(255, 255, 255, 0.95);
}

.hero-section img {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.btn-primary {
  background: var(--primary-color);
  border: none;
  padding: 12px 32px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 12px 32px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

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

.card {
  border: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-img-top {
  height: 220px;
  object-fit: cover;
}

.gradient-section {
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  color: var(--white);
}

.page-header {
  padding: 120px 0 80px;
}

.info-box {
  background: var(--white);
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.info-box:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow);
}

.feature-box {
  background: var(--bg-light);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-box:hover {
  background: var(--white);
  box-shadow: var(--shadow);
}

.consultation-item {
  background: var(--white);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.consultation-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.consultation-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.habit-card {
  background: var(--white);
  border-left: 4px solid var(--secondary-color);
  transition: all 0.3s ease;
}

.habit-card:hover {
  transform: translateX(5px);
  border-left-color: var(--primary-color);
}

.support-item {
  background: var(--bg-light);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.support-item:hover {
  background: var(--white);
  box-shadow: var(--shadow);
}

.structure-info {
  background: var(--bg-light);
  border-left: 4px solid var(--primary-color);
}

.disclaimer-box {
  background: var(--bg-light);
  border: 2px solid var(--primary-light);
}

.testimonial-card {
  background: var(--white);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.faq-item {
  background: var(--white);
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow);
}

.cta-section {
  padding: 100px 0;
}

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

.custom-list li {
  padding: 8px 0;
  padding-left: 30px;
  position: relative;
}

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

.contact-info-card {
  background: var(--bg-light);
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow);
}

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

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

.form-control {
  border-radius: 8px;
  border: 2px solid #e2e8f0;
  padding: 12px 16px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.thank-you-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
}

.thank-you-card {
  background: var(--white);
}

.checkmark-circle {
  display: inline-block;
}

.consultant-info {
  background: var(--bg-light);
  border-left: 4px solid var(--secondary-color);
  transition: all 0.3s ease;
}

.consultant-info:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow);
}

.difference-card {
  background: var(--white);
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.difference-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-lg);
}

.policy-content h2 {
  color: var(--primary-color);
  font-weight: 700;
}

.policy-content h5 {
  color: var(--text-dark);
  font-weight: 600;
}

.policy-content ul {
  margin-left: 20px;
}

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

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

footer {
  background-color: #1e293b !important;
}

footer h5 {
  font-weight: 600;
  margin-bottom: 1rem;
}

footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--primary-light) !important;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  color: var(--white);
  padding: 20px 0;
  z-index: 9999;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
  display: none;
}

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

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

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

.cookie-consent .btn {
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
    min-height: auto;
  }

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

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

  .card-img-top {
    height: 180px;
  }
}
