:root {
  --primary-yellow: #ffc107;
  --dark-text: #212529;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --dark-bg: #343a40;
  --muted-text: #6c757d;
  --border-color: #dee2e6;
}

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

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

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

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

.navbar-light .navbar-nav .nav-link:hover {
  color: var(--primary-yellow);
}

.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary-yellow);
}

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

.hero-section h1 {
  color: var(--dark-text);
  line-height: 1.2;
}

.hero-section .lead {
  color: var(--muted-text);
  font-size: 1.15rem;
}

.btn-warning {
  background-color: var(--primary-yellow);
  border-color: var(--primary-yellow);
  color: var(--dark-text);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-warning:hover {
  background-color: #ffb300;
  border-color: #ffb300;
  color: var(--dark-text);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

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

.btn-dark:hover {
  background-color: #23272b;
  border-color: #23272b;
  transform: translateY(-2px);
}

.info-section {
  background-color: var(--white);
}

.info-card {
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.info-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

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

.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
}

.custom-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-yellow);
  font-weight: bold;
  font-size: 1.2rem;
}

.benefit-card {
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  border-left: 4px solid var(--primary-yellow);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.testimonial-card {
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

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

.form-card {
  padding: 2.5rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-control {
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-yellow);
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.footer {
  background-color: var(--dark-bg);
  color: var(--white);
}

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

.footer a:hover {
  color: var(--primary-yellow);
  text-decoration: none;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(33, 37, 41, 0.98);
  color: var(--white);
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
  display: none;
}

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

.cookie-consent a {
  color: var(--primary-yellow);
  text-decoration: underline;
}

.cookie-consent .btn-outline-light {
  color: var(--white);
  border-color: var(--white);
}

.cookie-consent .btn-outline-light:hover {
  background-color: var(--white);
  color: var(--dark-text);
}

.page-header {
  padding: 60px 0;
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section h2 {
  color: var(--dark-text);
  margin-bottom: 1rem;
}

.policy-section h5 {
  color: var(--dark-text);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-section ul {
  margin-bottom: 1rem;
}

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

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

.thank-you-card {
  padding: 4rem 2rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #28a745;
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: bold;
  margin: 0 auto;
}

.cta-section {
  background-color: var(--primary-yellow);
  padding: 60px 0;
}

.cta-section h2 {
  color: var(--dark-text);
}

@media (max-width: 991px) {
  .hero-section {
    padding: 60px 0;
    text-align: center;
  }

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

  .content-section {
    padding: 40px 0;
  }

  .form-card {
    padding: 1.5rem;
  }

  .navbar-collapse {
    background-color: var(--white);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 767px) {
  .hero-section h1 {
    font-size: 1.75rem;
  }

  .display-4 {
    font-size: 2rem;
  }

  .btn-lg {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
  }

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

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

  .info-card,
  .benefit-card,
  .testimonial-card {
    margin-bottom: 1.5rem;
  }
}
