:root {
  --color-primary: #6b46c1;
  --color-primary-dark: #553399;
  --color-secondary: #4a3a6b;
  --color-accent: #8b7ab8;
  --color-background: #ffffff;
  --color-surface: #f8f7fc;
  --color-text: #2d2d2d;
  --color-text-light: #6b6b6b;
  --color-border: #e0dce9;
}

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

body {
  font-family: -apple-system, BlinkMacMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--color-text);
  line-height: 1.6;
  background-color: var(--color-background);
}

.site-header {
  background-color: var(--color-background);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
}

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

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

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

.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.hero-image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(107, 70, 193, 0.85) 0%, rgba(74, 58, 107, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}

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

.hero-description {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.content-section.bg-light {
  background-color: var(--color-surface);
}

.content-section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.content-section p {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.content-section .lead {
  font-size: 1.25rem;
  color: var(--color-text);
}

.section-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(107, 70, 193, 0.1);
}

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

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(107, 70, 193, 0.3);
}

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

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

.btn-outline-light {
  color: #ffffff;
  border-color: #ffffff;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background-color: #ffffff;
  color: var(--color-primary);
}

.mistake-box {
  background-color: var(--color-surface);
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 4px;
}

.mistake-box h4 {
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.mistake-box p {
  margin-bottom: 0;
  font-size: 1rem;
}

.resource-card {
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(107, 70, 193, 0.15);
}

.resource-card .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.resource-card h4 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.resource-card p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.video-placeholder {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.video-placeholder img {
  width: 100%;
  height: auto;
}

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  color: #ffffff;
  padding: 2rem;
}

.video-overlay h5 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.video-overlay p {
  margin-bottom: 0;
  color: #ffffff;
}

.testimonial-card {
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(107, 70, 193, 0.08);
}

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

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

.faq-item {
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.faq-item h5 {
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-weight: 600;
}

.faq-item p {
  margin-bottom: 0;
}

.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: #ffffff;
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.site-footer {
  background-color: var(--color-secondary);
  color: #ffffff;
  padding: 3rem 0 1rem;
}

.site-footer h5 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

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

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

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

.footer-links a:hover {
  color: #ffffff;
}

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

.footer-bottom p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.footer-legal {
  list-style: none;
  display: flex;
  gap: 2rem;
  padding: 0;
  margin: 0;
}

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

.footer-legal a:hover {
  color: #ffffff;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-secondary);
  color: #ffffff;
  padding: 1.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 300px;
}

.cookie-content a {
  color: #ffffff;
  text-decoration: underline;
}

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

.cookie-buttons .btn {
  white-space: nowrap;
}

.cookie-settings-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  max-width: 500px;
  width: 90%;
}

.cookie-settings-content h4 {
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.cookie-category {
  margin-bottom: 1.5rem;
}

.cookie-category label {
  display: block;
  margin-bottom: 0.5rem;
  cursor: pointer;
}

.cookie-category input[type="checkbox"] {
  margin-right: 0.5rem;
}

.cookie-category p {
  margin-left: 1.5rem;
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.page-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: 5rem 0 3rem;
  margin-bottom: 0;
}

.page-hero h1 {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
}

.principle-card {
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.principle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(107, 70, 193, 0.15);
}

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

.principle-card p {
  margin-bottom: 0;
  font-size: 1rem;
  color: var(--color-text-light);
}

.focus-item {
  text-align: center;
  padding: 2rem 1rem;
}

.focus-item h5 {
  color: var(--color-primary);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.focus-item p {
  color: var(--color-text-light);
  margin-bottom: 0;
}

.contact-info {
  background-color: var(--color-surface);
  border-left: 4px solid var(--color-primary);
  padding: 2rem;
  margin-top: 2rem;
  border-radius: 4px;
}

.contact-info h4 {
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 1rem;
  color: var(--color-text);
}

.contact-form-container {
  background-color: var(--color-surface);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(107, 70, 193, 0.1);
}

.contact-form-container h3 {
  color: var(--color-primary);
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.form-control {
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 0.75rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(107, 70, 193, 0.25);
}

.form-group label {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.form-check-label {
  font-weight: normal;
  color: var(--color-text-light);
}

.form-check-label a {
  color: var(--color-primary);
  text-decoration: underline;
}

.help-card {
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  height: 100%;
}

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

.help-card p {
  color: var(--color-text-light);
  margin-bottom: 0;
}

.thank-you-section {
  padding: 6rem 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  background-color: var(--color-surface);
  padding: 4rem 3rem;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(107, 70, 193, 0.15);
}

.thank-you-content h1 {
  color: var(--color-primary);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.thank-you-content .lead {
  color: var(--color-text);
  margin-bottom: 1rem;
}

.thank-you-content p {
  color: var(--color-text-light);
  margin-bottom: 2rem;
}

.thank-you-actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.legal-content {
  font-size: 1rem;
  line-height: 1.8;
}

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

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.legal-content p {
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.legal-content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  color: var(--color-text);
}

.legal-content li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

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

.legal-content a:hover {
  color: var(--color-primary-dark);
}

.disclaimer-notice {
  background-color: var(--color-surface);
  border-left: 4px solid var(--color-primary);
  padding: 2rem;
  margin-top: 3rem;
  border-radius: 4px;
}

.disclaimer-notice h3 {
  color: var(--color-primary);
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.disclaimer-notice p {
  margin-bottom: 0;
  font-size: 1.1rem;
}

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

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

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

  .content-section h2 {
    font-size: 1.75rem;
  }

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

  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }

  .cookie-content {
    flex-direction: column;
  }

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

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

  .page-hero .lead {
    font-size: 1.1rem;
  }

  .contact-form-container {
    padding: 1.5rem;
  }

  .thank-you-content {
    padding: 2.5rem 1.5rem;
  }

  .thank-you-content h1 {
    font-size: 1.75rem;
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .thank-you-actions .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .hero-section {
    min-height: 500px;
  }

  .btn-primary,
  .btn-outline-primary,
  .btn-outline-light {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
  }
}
