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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans",
    "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2d2d2d;
  background-color: #ffffff;
}

.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-brand.brand-logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: #dc2626;
  letter-spacing: -0.5px;
}

.navbar-brand.brand-logo:hover {
  color: #b91c1c;
}

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

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #dc2626;
}

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

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

.hero-overlay {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  padding: 4rem 2rem;
  width: 100%;
}

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

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

.page-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 8rem 0 4rem;
  margin-top: 72px;
}

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

.page-subtitle {
  font-size: 1.1rem;
  color: #666666;
}

.section-light {
  background-color: #f8f9fa;
}

.section-white {
  background-color: #ffffff;
}

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

.section-text {
  font-size: 1.1rem;
  color: #555555;
  line-height: 1.8;
}

.info-card,
.topic-card,
.service-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

.info-card-image,
.topic-card-image,
.service-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.info-card-title,
.topic-card-title,
.service-card-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #2d2d2d;
  padding: 1.5rem 1.5rem 0.5rem;
}

.info-card-text,
.topic-card-text,
.service-card-text {
  font-size: 1rem;
  color: #666666;
  padding: 0 1.5rem 1.5rem;
  line-height: 1.6;
}

.benefit-item,
.principle-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #dc2626;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.benefit-title,
.principle-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 0.75rem;
}

.benefit-text,
.principle-text {
  font-size: 1rem;
  color: #666666;
  line-height: 1.6;
}

.coverage-list {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

.coverage-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #dc2626;
  margin-bottom: 0.5rem;
}

.coverage-text {
  font-size: 1rem;
  color: #666666;
  line-height: 1.6;
}

.audience-list {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.audience-item {
  padding: 1.25rem;
  border-left: 3px solid #dc2626;
  margin-bottom: 1rem;
  background: #f8f9fa;
  border-radius: 6px;
}

.audience-item:last-child {
  margin-bottom: 0;
}

.audience-text {
  font-size: 1.05rem;
  color: #2d2d2d;
  margin: 0;
  font-weight: 500;
}

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

.step-number {
  width: 60px;
  height: 60px;
  background: #dc2626;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 0.75rem;
}

.step-text {
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.6;
}

.testimonial-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.testimonial-text {
  font-size: 1.05rem;
  color: #555555;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-size: 0.95rem;
  color: #dc2626;
  font-weight: 600;
  text-align: right;
}

.faq-list {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

.faq-question {
  font-size: 1.15rem;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 0.75rem;
}

.faq-answer {
  font-size: 1rem;
  color: #666666;
  line-height: 1.7;
}

.cta-section {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #ffffff;
}

.cta-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.15rem;
  color: #ffffff;
  opacity: 0.95;
}

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

.btn-primary:hover {
  background-color: #b91c1c;
  border-color: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

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

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

.btn-secondary {
  background-color: #6c757d;
  border-color: #6c757d;
  color: #ffffff;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: #5a6268;
  border-color: #545b62;
}

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

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

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-label {
  font-size: 1rem;
  font-weight: 600;
  color: #dc2626;
  margin-bottom: 0.5rem;
}

.contact-detail {
  font-size: 1.05rem;
  color: #2d2d2d;
  line-height: 1.7;
  margin: 0;
}

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

.form-control:focus {
  border-color: #dc2626;
  box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.15);
}

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

.thank-you-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  background: #f8f9fa;
}

.thank-you-card {
  background: #ffffff;
  padding: 4rem 3rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: #22c55e;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 2rem;
  font-weight: 700;
}

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

.thank-you-text {
  font-size: 1.1rem;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #2d2d2d;
}

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

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

.legal-content h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #2d2d2d;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  margin-bottom: 1rem;
  color: #555555;
}

.legal-content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

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

.legal-content a {
  color: #dc2626;
  text-decoration: none;
  font-weight: 600;
}

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

.disclaimer-box,
.disclaimer-highlight {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.disclaimer-text {
  font-size: 1rem;
  color: #856404;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.disclaimer-highlight {
  background: #ffe5e5;
  border-left-color: #dc2626;
}

.disclaimer-highlight p {
  color: #991b1b;
  margin: 0;
}

.footer {
  background-color: #2d2d2d;
  color: #ffffff;
}

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

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

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

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

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

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

.footer-copyright {
  font-size: 0.9rem;
  color: #999999;
  margin: 0;
}

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

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

.cookie-text {
  font-size: 0.95rem;
  color: #ffffff;
  margin: 0;
}

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

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

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

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

  .navbar-collapse {
    background: #ffffff;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
}

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

  .hero-title {
    font-size: 1.85rem;
  }

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

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

  .page-header {
    padding: 6rem 0 3rem;
  }

  .cookie-banner .text-right {
    text-align: left !important;
    margin-top: 1rem;
  }

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

  .btn-lg {
    display: block;
    width: 100%;
    margin-bottom: 0.75rem;
  }

  .btn-lg:last-child {
    margin-bottom: 0;
  }
}
