:root {
  --color-primary: #dc2626;
  --color-primary-dark: #b91c1c;
  --color-secondary: #1f2937;
  --color-light: #f9fafb;
  --color-white: #ffffff;
  --color-text: #374151;
  --color-text-light: #6b7280;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--color-text);
  line-height: 1.6;
}

.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

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

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.btn-primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.icon-text {
  color: white;
  font-size: 2rem;
  font-weight: bold;
}

.feature-box {
  padding: 1.5rem;
  border-left: 4px solid var(--color-primary);
  background-color: var(--color-light);
  height: 100%;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto;
}

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

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

.cta-section {
  background-color: var(--color-primary);
}

.policy-content h2,
.policy-content h3 {
  color: var(--color-secondary);
  margin-top: 2rem;
}

.policy-content ul {
  padding-left: 1.5rem;
}

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

.principle-item,
.contact-info-item {
  padding-bottom: 1rem;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #10b981;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto;
}

.thank-you-content {
  padding: 3rem 0;
}

.min-vh-75 {
  min-height: 75vh;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-secondary);
  color: white;
  padding: 1rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

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

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

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

footer a:hover {
  opacity: 0.8;
}

@media (max-width: 767px) {
  .hero-image-wrapper {
    height: 400px;
  }

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

  .icon-circle {
    width: 60px;
    height: 60px;
  }

  .icon-text {
    font-size: 1.5rem;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

@media (min-width: 768px) {
  .hero-image-wrapper {
    height: 600px;
  }
}
