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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2d3748;
  background-color: #ffffff;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  color: #4a148c;
  font-weight: 700;
}

.navbar-brand:hover {
  color: #6a1b9a;
}

.nav-link {
  color: #4a5568;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #4a148c;
}

.hero-section {
  position: relative;
  width: 100%;
  margin-bottom: 3rem;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(74, 20, 140, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #f3e5f5;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.content-block {
  margin-bottom: 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.section-text {
  font-size: 1.0625rem;
  color: #4a5568;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.cta-link {
  display: inline-block;
  color: #4a148c;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1rem;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.cta-link:hover {
  border-bottom-color: #4a148c;
  text-decoration: none;
}

.btn-primary {
  background-color: #4a148c;
  border-color: #4a148c;
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #6a1b9a;
  border-color: #6a1b9a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 20, 140, 0.3);
}

.btn-outline-primary {
  color: #4a148c;
  border-color: #4a148c;
  background-color: transparent;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

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

.final-cta {
  background: linear-gradient(135deg, #f3e5f5 0%, #ffffff 100%);
  padding: 4rem 0;
}

.faq-item {
  padding: 1.5rem;
  background-color: #f7fafc;
  border-radius: 0.5rem;
  border-left: 4px solid #4a148c;
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 0.75rem;
}

.faq-answer {
  font-size: 1.0625rem;
  color: #4a5568;
  margin-bottom: 0;
  line-height: 1.7;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.25rem;
  color: #718096;
  margin-bottom: 2rem;
}

.section-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1.5rem;
}

.content-text {
  font-size: 1.0625rem;
  color: #4a5568;
  margin-bottom: 1rem;
  line-height: 1.7;
}

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

.feature-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1.0625rem;
  color: #4a5568;
  line-height: 1.7;
}

.feature-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #4a148c;
  font-weight: 700;
}

.principle-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
  border-top: 4px solid #4a148c;
}

.principle-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
}

.principle-text {
  font-size: 1.0625rem;
  color: #4a5568;
  line-height: 1.7;
}

.standard-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1.5rem;
}

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

.standard-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1.0625rem;
  color: #4a5568;
  line-height: 1.7;
}

.standard-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4a148c;
  font-weight: 700;
}

.contact-heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.contact-details {
  font-size: 1.0625rem;
  color: #4a5568;
  line-height: 1.7;
}

.contact-form-wrapper {
  background-color: #f7fafc;
  padding: 2rem;
  border-radius: 0.5rem;
}

.form-control {
  border-radius: 0.375rem;
  border: 1px solid #cbd5e0;
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

.form-control:focus {
  border-color: #4a148c;
  box-shadow: 0 0 0 3px rgba(74, 20, 140, 0.1);
}

.thank-you-content {
  background-color: #f7fafc;
  border-radius: 0.5rem;
  padding: 3rem;
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
}

.legal-subheading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d3748;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-text {
  font-size: 1.0625rem;
  color: #4a5568;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.legal-list {
  list-style: disc;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.legal-list li {
  font-size: 1.0625rem;
  color: #4a5568;
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.last-updated {
  font-size: 0.9375rem;
  color: #718096;
  font-style: italic;
}

.footer {
  margin-top: 4rem;
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-text {
  font-size: 0.9375rem;
  color: #cbd5e0;
  line-height: 1.6;
}

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

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

.footer-links a {
  color: #cbd5e0;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}

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

.footer-contact {
  font-size: 0.9375rem;
  color: #cbd5e0;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-divider {
  background-color: #4a5568;
  margin: 2rem 0;
}

.footer-legal {
  list-style: none;
  padding-left: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.footer-legal li {
  margin: 0 1rem 0.5rem 1rem;
}

.footer-legal a {
  color: #cbd5e0;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

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

.footer-copyright {
  font-size: 0.875rem;
  color: #a0aec0;
  margin-bottom: 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2d3748;
  color: #ffffff;
  padding: 1.5rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
}

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

.cookie-text {
  font-size: 0.9375rem;
  margin-bottom: 1rem;
  flex: 1;
  min-width: 300px;
  margin-right: 2rem;
}

.cookie-link {
  color: #e9d8fd;
  text-decoration: underline;
}

.cookie-link:hover {
  color: #ffffff;
}

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

.btn-outline-light {
  color: #ffffff;
  border-color: #ffffff;
  background-color: transparent;
}

.btn-outline-light:hover {
  background-color: #ffffff;
  color: #2d3748;
}

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-image {
    height: 350px;
  }

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

  .page-title {
    font-size: 2rem;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-text {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-buttons .btn {
    flex: 1;
  }
}

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

  .ml-3 {
    margin-left: 0 !important;
    margin-top: 0.75rem;
  }
}
