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

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: #1a1a1a;
}

.navbar {
  padding: 1rem 0;
  background-color: #ffffff !important;
}

.navbar-brand {
  font-size: 1.5rem;
  color: #c84141 !important;
}

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

.nav-link:hover,
.nav-link.active {
  color: #c84141 !important;
}

.hero-section {
  margin-top: 72px;
  position: relative;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 600px;
  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: linear-gradient(135deg, rgba(200, 65, 65, 0.85) 0%, rgba(200, 65, 65, 0.7) 100%);
  display: flex;
  align-items: center;
}

.hero-content {
  color: #ffffff;
  max-width: 700px;
}

.hero-content h1 {
  color: #ffffff;
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero-content .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.page-header {
  margin-top: 72px;
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, #c84141 0%, #a83535 100%);
  color: #ffffff;
}

.page-header h1 {
  color: #ffffff;
}

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

.section-grey {
  background-color: #f5f5f5;
}

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

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

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

.card {
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-img-top {
  border-radius: 12px 12px 0 0;
  height: 200px;
  object-fit: cover;
}

.feature-box,
.value-card,
.recommendation-box,
.testimonial-card {
  transition: transform 0.3s ease;
}

.feature-box:hover,
.value-card:hover,
.recommendation-box:hover {
  transform: translateY(-5px);
}

.step-card {
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #c84141 0%, #a83535 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.disclaimer-box {
  background-color: #fff5f5;
  border-left: 4px solid #c84141;
}

.info-box {
  background-color: #f5f5f5;
}

.contact-info-box {
  background-color: #fafafa;
}

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

.cta-section h2 {
  color: #ffffff;
}

.footer {
  background-color: #1a1a1a;
  color: #ffffff;
}

.footer h5 {
  color: #ffffff;
}

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

.footer a:hover {
  color: #c84141;
}

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

.cookie-consent.hidden {
  display: none;
}

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

.thank-you-section {
  margin-top: 72px;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-color: #f5f5f5;
}

.thank-you-box {
  background-color: #ffffff;
}

.checkmark-icon {
  display: inline-block;
}

.accordion .btn-link {
  text-decoration: none;
}

.accordion .btn-link:focus {
  box-shadow: none;
}

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

.shadow-sm {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

.rounded {
  border-radius: 12px !important;
}

.form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 0.75rem 1rem;
}

.form-control:focus {
  border-color: #c84141;
  box-shadow: 0 0 0 0.2rem rgba(200, 65, 65, 0.15);
}

.policy-content h2 {
  color: #c84141;
}

.policy-content h4 {
  color: #1a1a1a;
}

@media (max-width: 991px) {
  .navbar-collapse {
    margin-top: 1rem;
  }

  .nav-link {
    margin-left: 0;
    margin-top: 0.5rem;
  }

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

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

@media (max-width: 767px) {
  .section-title {
    font-size: 1.5rem;
  }

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

  .cookie-consent .btn {
    margin-top: 0.5rem;
    width: 100%;
  }
}
