* {
  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: #2d2d2d;
  background-color: #ffffff;
  padding-top: 76px;
}

.navbar {
  background-color: #ffffff !important;
  border-bottom: 1px solid #e8e8e8;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
}

.brand-text {
  color: #8b1a1a;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.nav-link {
  color: #2d2d2d !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #8b1a1a !important;
}

.nav-item.active .nav-link {
  color: #8b1a1a !important;
}

.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%;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

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

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

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.section {
  padding: 5rem 0;
}

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

.section-subtitle {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 2rem;
}

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

.section-list {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #4a4a4a;
  padding-left: 1.5rem;
}

.section-list li {
  margin-bottom: 0.75rem;
}

.feature-card {
  border: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.feature-card .card-body {
  padding: 1.75rem;
}

.feature-card .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 1rem;
}

.feature-card .card-text {
  color: #666;
  line-height: 1.7;
}

.info-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-3px);
}

.info-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.info-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 0.75rem;
}

.info-card p {
  color: #666;
  line-height: 1.6;
}

.topic-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  background: white;
}

.topic-card:hover {
  transform: translateY(-5px);
}

.topic-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.topic-content {
  padding: 1.5rem;
}

.topic-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 0.75rem;
}

.topic-content p {
  color: #666;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.support-card {
  text-align: center;
  padding: 1rem;
}

.support-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.support-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 0.75rem;
}

.support-card p {
  color: #666;
  line-height: 1.6;
}

.disclaimer-box {
  background: #f8f8f8;
  border: 2px solid #8b1a1a;
  border-radius: 8px;
  padding: 2.5rem;
}

.disclaimer-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d2d2d;
}

.disclaimer-box p {
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.testimonials-section {
  background: linear-gradient(135deg, #8b1a1a 0%, #6b1414 100%);
  color: white;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
  color: #4a4a4a;
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  color: #8b1a1a;
  font-weight: 600;
  font-size: 0.9375rem;
}

.faq-section {
  background: white;
}

.faq-item {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 1.75rem;
  margin-bottom: 1.25rem;
}

.faq-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 0.75rem;
}

.faq-item p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
}

.cta-section {
  background: linear-gradient(135deg, #8b1a1a 0%, #6b1414 100%);
  color: white;
}

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

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

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

.btn-outline-primary:hover {
  background-color: #8b1a1a;
  border-color: #8b1a1a;
  color: white;
}

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

.btn-light:hover {
  transform: translateY(-2px);
}

.footer {
  background-color: #1a1a1a;
  color: #e8e8e8;
  padding: 3rem 0 1.5rem;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.25rem;
}

.footer-text {
  color: #b8b8b8;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

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

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

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

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

.footer-divider {
  border-color: #333;
  margin: 2rem 0 1.5rem;
}

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

.page-header {
  background: linear-gradient(135deg, #8b1a1a 0%, #6b1414 100%);
  padding: 6rem 0 4rem;
  color: white;
  margin-bottom: 0;
}

.page-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.page-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.contact-form {
  background: #f8f8f8;
  padding: 2rem;
  border-radius: 8px;
}

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

.contact-form .form-control:focus {
  border-color: #8b1a1a;
  box-shadow: 0 0 0 0.2rem rgba(139, 26, 26, 0.1);
}

.contact-info-box {
  background: #f8f8f8;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #8b1a1a;
}

.contact-info-box h5 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 0.75rem;
}

.contact-info-box p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
}

.contact-info-box a {
  color: #8b1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-box a:hover {
  color: #6b1414;
}

.thank-you-section {
  min-height: calc(100vh - 300px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: #8b1a1a;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 2rem;
}

.thank-you-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 1.5rem;
}

.thank-you-text {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 1rem;
}

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

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d2d2d;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

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

.legal-content p {
  color: #4a4a4a;
  margin-bottom: 1.25rem;
}

.legal-content ul {
  color: #4a4a4a;
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

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

.legal-content a {
  color: #8b1a1a;
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.value-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-3px);
}

.value-icon {
  font-size: 3rem;
}

.value-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 0.75rem;
}

.value-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

.info-box {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 2rem;
  border-left: 4px solid #8b1a1a;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e8e8e8;
  color: #4a4a4a;
  line-height: 1.7;
}

.info-list li:last-child {
  border-bottom: none;
}

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

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

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

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

.cookie-link:hover {
  color: #6b1414;
}

.btn-outline-light {
  border-color: white;
  color: white;
}

.btn-outline-light:hover {
  background-color: white;
  color: #2d2d2d;
}

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

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

  .section {
    padding: 3rem 0;
  }

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

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

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

@media (max-width: 576px) {
  body {
    padding-top: 70px;
  }

  .hero-section {
    min-height: 500px;
  }

  .cookie-consent .btn {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .cookie-consent .btn.ml-2 {
    margin-left: 0 !important;
  }
}
