:root {
  --primary-color: #ffc107;
  --primary-dark: #ffa000;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

.navbar-brand {
  font-size: 1.5rem;
  color: var(--primary-color) !important;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark) !important;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.nav-link.active {
  color: var(--primary-color) !important;
}

.hero-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
}

.page-header {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  margin-bottom: 0;
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

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

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-dark);
  transform: translateY(-2px);
}

.feature-card {
  padding: 2rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  height: 100%;
}

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

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--text-dark);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
}

.icon-circle-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  color: var(--text-dark);
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 700;
}

.benefit-item {
  padding-left: 1.5rem;
  border-left: 4px solid var(--primary-color);
}

.service-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  height: 100%;
}

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

.service-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-content {
  padding: 2rem;
}

.target-card {
  padding: 2rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  height: 100%;
  border-left: 4px solid var(--primary-color);
}

.testimonial-card {
  padding: 2rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  height: 100%;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.testimonial-author {
  color: var(--text-dark);
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.footer-section {
  background-color: #2c2c2c;
  color: var(--white);
  padding: 60px 0 20px;
}

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

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

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.cookie-banner a {
  color: var(--white);
}

.service-detail {
  padding: 3rem 0;
}

.service-features {
  padding-left: 1.5rem;
}

.service-features li {
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

.process-step {
  padding: 2rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  height: 100%;
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--text-dark);
  border-radius: 50%;
  font-size: 1.75rem;
  font-weight: 700;
}

.value-card {
  padding: 2rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  height: 100%;
}

.why-card {
  padding: 2rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  height: 100%;
  border-top: 4px solid var(--primary-color);
}

.contact-info-card {
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
}

.contact-info-card a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.contact-info-card a:hover {
  color: var(--primary-dark);
}

.faq-card {
  padding: 2rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  height: 100%;
}

.thank-you-section {
  padding: 120px 0 80px;
  background: var(--bg-light);
}

.thank-you-card {
  padding: 4rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.checkmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background-color: var(--primary-color);
  color: var(--text-dark);
  border-radius: 50%;
  font-size: 3rem;
  font-weight: 700;
}

.next-steps-card {
  padding: 2rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  height: 100%;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h2 {
  color: var(--text-dark);
  font-weight: 700;
}

.policy-content h5 {
  color: var(--text-dark);
}

.policy-content ul {
  margin-bottom: 1.5rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.policy-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.policy-content a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.policy-content a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.alert {
  border-radius: 10px;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 60px;
  }

  .page-header {
    padding: 100px 0 40px;
  }

  .section-padding {
    padding: 60px 0;
  }

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

  .thank-you-card {
    padding: 2rem;
  }

  .thank-you-actions .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }

  .thank-you-actions .btn:last-child {
    margin-bottom: 0;
  }
}
