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

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

.navbar {
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

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

.nav-link {
  color: #4b5563;
  font-weight: 500;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #7c3aed;
}

.hero {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f7ff 0%, #ffffff 100%);
}

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

.hero-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.btn-primary {
  background-color: #7c3aed;
  border-color: #7c3aed;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #6d28d9;
  border-color: #6d28d9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.btn-secondary {
  background-color: #e5e7eb;
  border-color: #e5e7eb;
  color: #4b5563;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: #d1d5db;
  border-color: #d1d5db;
  color: #374151;
}

.btn-outline-primary {
  border-color: #7c3aed;
  color: #7c3aed;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #7c3aed;
  border-color: #7c3aed;
  color: #ffffff;
}

.intro-section {
  padding: 4rem 0;
  background-color: #ffffff;
}

.intro-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.intro-section .lead {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.8;
}

.principles-section {
  padding: 5rem 0;
  background-color: #f9fafb;
}

.principles-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
}

.principle-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
}

.principle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.15);
}

.principle-card h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.principle-card p {
  color: #6b7280;
  line-height: 1.7;
}

.testimonials-section {
  padding: 5rem 0;
  background-color: #ffffff;
}

.testimonials-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
}

.testimonial-card {
  background: linear-gradient(135deg, #f8f7ff 0%, #ffffff 100%);
  padding: 2.5rem;
  border-radius: 12px;
  border-left: 4px solid #7c3aed;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.testimonial-card p {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: #7c3aed;
}

.faq-section {
  padding: 5rem 0;
  background-color: #f9fafb;
}

.faq-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
}

.faq-item {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.faq-item p {
  color: #6b7280;
  line-height: 1.7;
}

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  color: #ffffff;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-section .btn-primary {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #7c3aed;
}

.cta-section .btn-primary:hover {
  background-color: #f3f4f6;
  border-color: #f3f4f6;
  color: #6d28d9;
}

.page-header {
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, #f8f7ff 0%, #ffffff 100%);
  text-align: center;
}

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

.page-header .lead {
  font-size: 1.25rem;
  color: #6b7280;
}

.about-content {
  padding: 4rem 0;
}

.about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.principle-box {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  height: 100%;
  border-top: 4px solid #7c3aed;
}

.principle-box h4 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.principle-box p {
  color: #6b7280;
  line-height: 1.7;
}

.offer-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

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

.offer-item h4 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.offer-item p {
  color: #6b7280;
  line-height: 1.7;
}

.contact-section {
  padding: 4rem 0;
}

.contact-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

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

.form-control:focus {
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-label {
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

.contact-info {
  background: #f9fafb;
  padding: 2rem;
  border-radius: 12px;
}

.contact-detail {
  margin-bottom: 1.5rem;
}

.contact-detail h5 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.contact-detail p {
  color: #6b7280;
  line-height: 1.7;
}

.thank-you-section {
  padding: 5rem 0;
  text-align: center;
}

.thank-you-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.thank-you-section .lead {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.thank-you-section p {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-content {
  padding: 4rem 0;
}

.policy-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

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

.policy-content h4 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #374151;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content p {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.policy-content ul {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.policy-content a {
  color: #7c3aed;
  text-decoration: none;
  font-weight: 500;
}

.policy-content a:hover {
  color: #6d28d9;
  text-decoration: underline;
}

.footer {
  background-color: #1f2937;
  color: #e5e7eb;
  padding: 3rem 0 1rem;
  margin-top: 5rem;
}

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

.footer p {
  color: #d1d5db;
  line-height: 1.7;
}

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

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

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer hr {
  border-color: #374151;
  margin: 2rem 0;
}

.footer-bottom a {
  color: #d1d5db;
  text-decoration: none;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #7c3aed;
}

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

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

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-banner a {
  color: #a78bfa;
  text-decoration: underline;
}

.cookie-banner a:hover {
  color: #c4b5fd;
}

.cookie-banner .btn {
  margin-left: 0.5rem;
}

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

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

  .hero {
    padding: 3rem 0;
  }

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

  .principles-section h2,
  .testimonials-section h2,
  .faq-section h2,
  .cta-section h2 {
    font-size: 1.75rem;
  }

  .cookie-banner .col-md-4 {
    text-align: left;
    margin-top: 1rem;
  }

  .cookie-banner .btn {
    margin-left: 0;
    margin-right: 0.5rem;
    margin-top: 0.5rem;
  }
}

img {
  max-width: 100%;
  height: auto;
}

.rounded {
  border-radius: 12px;
}
