:root {
  --primary-purple: #7c3aed;
  --primary-purple-dark: #6d28d9;
  --primary-purple-light: #a78bfa;
  --accent-purple: #c084fc;
  --dark-gray: #1f2937;
  --medium-gray: #6b7280;
  --light-gray: #f3f4f6;
  --white: #ffffff;
  --black: #111827;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--black);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--primary-purple-dark);
  text-decoration: none;
}

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

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

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

.nav-link:hover,
.nav-link.active {
  color: var(--primary-purple);
}

.btn-primary {
  background-color: var(--primary-purple);
  border-color: var(--primary-purple);
  color: var(--white);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-purple-dark);
  border-color: var(--primary-purple-dark);
  transform: translateY(-2px);
}

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

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

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

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
  display: flex;
  align-items: center;
}

.hero-content {
  color: var(--white);
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.hero-content .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--white);
}

.page-header {
  background-color: var(--light-gray);
  border-bottom: 3px solid var(--primary-purple);
}

.card {
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.2);
}

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

.icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
  border-radius: 50%;
}

.feature-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary-purple);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.step-card {
  padding: 2rem;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.step-card:hover {
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.2);
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-purple);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 auto;
}

.testimonial-card {
  padding: 2rem;
  background-color: var(--light-gray);
  border-radius: 8px;
  border-left: 4px solid var(--primary-purple);
  height: 100%;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-purple);
  margin-top: 1rem;
}

.faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.faq-item:last-child {
  border-bottom: none;
}

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

.cta-section h2,
.cta-section .lead {
  color: var(--white);
}

.cta-section .btn-primary {
  background-color: var(--white);
  color: var(--primary-purple);
}

.cta-section .btn-primary:hover {
  background-color: var(--light-gray);
  color: var(--primary-purple-dark);
}

.mission-card,
.principle-card,
.focus-card {
  padding: 2rem;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.principle-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
  border-radius: 50%;
}

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

.form-control {
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.25);
}

.form-check-input:checked {
  background-color: var(--primary-purple);
  border-color: var(--primary-purple);
}

.next-step-card {
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  text-align: center;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
  border-radius: 50%;
  margin: 0 auto;
}

.legal-content {
  line-height: 1.8;
}

.legal-content h2 {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 2px solid var(--light-gray);
}

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

.legal-content h3 {
  margin-top: 1.5rem;
  color: var(--primary-purple);
}

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

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

footer {
  border-top: 4px solid var(--primary-purple);
}

footer h5 {
  color: var(--white);
  margin-bottom: 1rem;
}

footer a {
  color: var(--white);
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

footer a:hover {
  opacity: 1;
}

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

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

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

.cookie-banner-text {
  flex: 1;
  min-width: 300px;
}

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

@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content .lead {
    font-size: 1rem;
  }

  .hero-image-wrapper {
    height: 400px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

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

  .hero-image-wrapper {
    height: 350px;
  }

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

  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-banner-buttons button {
    width: 100%;
  }
}
