:root {
  --primary-yellow: #ffc107;
  --primary-yellow-dark: #ffa000;
  --primary-yellow-light: #ffecb3;
  --text-dark: #212121;
  --text-medium: #424242;
  --text-light: #757575;
  --bg-white: #ffffff;
  --bg-light: #f5f5f5;
  --bg-lighter: #fafafa;
  --border-color: #e0e0e0;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

* {
  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(--bg-white);
}

.header {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.navbar-brand:hover .logo {
  color: var(--primary-yellow-dark);
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--primary-yellow-dark);
}

.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-yellow-light) 0%, var(--bg-lighter) 100%);
  overflow: hidden;
  padding: 4rem 2rem;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  line-height: 1.2;
}

.hero .lead {
  font-size: 1.25rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
}

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

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

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

.btn-primary:focus,
.btn-primary:active {
  background-color: var(--primary-yellow-dark);
  border-color: var(--primary-yellow-dark);
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
}

.content-section {
  padding: 2rem 0;
}

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

.section-intro {
  font-size: 1.125rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.content-text {
  color: var(--text-medium);
  font-size: 1rem;
  line-height: 1.8;
}

.content-text h3 {
  color: var(--text-dark);
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

.content-text ul {
  margin-top: 1rem;
  padding-left: 1.5rem;
}

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

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

.content-text a:hover {
  color: var(--text-dark);
}

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

.rounded {
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.disclaimer-section {
  background-color: var(--primary-yellow-light);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-yellow);
}

.disclaimer-box {
  background-color: var(--primary-yellow-light);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-yellow);
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-yellow-light) 0%, var(--bg-lighter) 100%);
  border-radius: 12px;
  padding: 3rem 2rem;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.contact-info a {
  color: var(--primary-yellow-dark);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

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

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

.form-check-input:checked {
  background-color: var(--primary-yellow);
  border-color: var(--primary-yellow);
}

.thank-you-content {
  padding: 4rem 2rem;
}

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

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

.policy-section h3 {
  color: var(--text-medium);
  margin-bottom: 0.75rem;
}

.policy-section p,
.policy-section ul {
  color: var(--text-medium);
  line-height: 1.8;
}

.policy-section ul {
  margin-top: 1rem;
  padding-left: 1.5rem;
}

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

.footer {
  background-color: var(--text-dark);
  color: var(--bg-light);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer h5 {
  color: var(--bg-white);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer p {
  color: var(--bg-light);
  font-size: 0.9rem;
}

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

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

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

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

.footer-link {
  color: var(--bg-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer hr {
  border-color: var(--text-medium);
}

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

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

.cookie-banner p {
  margin-bottom: 0;
  color: var(--bg-light);
}

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

.cookie-banner a:hover {
  color: var(--primary-yellow-light);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero .lead {
    font-size: 1.125rem;
  }

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

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

  .cta-section h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .hero {
    min-height: 500px;
    padding: 3rem 1rem;
  }

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

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