:root {
  --primary-blue: #2563eb;
  --primary-blue-dark: #1e40af;
  --primary-blue-light: #3b82f6;
  --secondary-blue: #60a5fa;
  --light-blue: #dbeafe;
  --very-light-blue: #eff6ff;
  --dark-text: #1e293b;
  --medium-text: #475569;
  --light-text: #64748b;
  --lighter-text: #94a3b8;
  --white: #ffffff;
  --off-white: #f8fafc;
  --light-gray: #f1f5f9;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px 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(--dark-text);
  line-height: 1.6;
  background-color: var(--white);
}

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

.navbar {
  padding: 1rem 0;
}

.brand-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-blue);
  letter-spacing: -0.02em;
}

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

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

.hero-section {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(96, 165, 250, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  opacity: 0.95;
}

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

.content-section.bg-light {
  background-color: var(--off-white);
}

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

.section-text {
  font-size: 1.1rem;
  color: var(--medium-text);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.scenario-card,
.guideline-box {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: var(--white);
  height: 100%;
}

.scenario-card:hover,
.guideline-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.scenario-card .card-img-top,
.guideline-box img {
  height: 200px;
  object-fit: cover;
}

.scenario-card .card-body {
  padding: 1.5rem;
}

.scenario-card .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 0.75rem;
}

.scenario-card .card-text {
  color: var(--medium-text);
  font-size: 1rem;
}

.guideline-box {
  padding: 1.5rem;
  text-align: center;
}

.guideline-box h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 0.75rem;
}

.guideline-box p {
  color: var(--medium-text);
  font-size: 1rem;
  margin: 0;
}

.info-box,
.disclaimer-box {
  background-color: var(--very-light-blue);
  border-left: 4px solid var(--primary-blue);
  padding: 1.5rem;
  border-radius: 8px;
}

.info-box h5,
.disclaimer-box h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 1rem;
}

.disclaimer-box {
  background-color: var(--light-blue);
}

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  color: var(--white);
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.25rem;
  opacity: 0.95;
}

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

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

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

.btn-light:hover {
  background-color: var(--off-white);
  border-color: var(--off-white);
  color: var(--primary-blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.site-footer {
  background-color: var(--dark-text);
  color: var(--lighter-text);
  padding: 3rem 0 1rem;
}

.footer-heading {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

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

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

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

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

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

.footer-policy-link {
  color: var(--lighter-text);
  text-decoration: none;
  margin-left: 1rem;
  transition: color 0.3s ease;
}

.footer-policy-link:hover {
  color: var(--white);
}

.page-header {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
}

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

.contact-form .form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.contact-info-box {
  background-color: var(--off-white);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.contact-info-box h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.contact-info-box p {
  margin: 0;
  color: var(--medium-text);
}

.contact-info-box a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.thank-you-section {
  padding: 6rem 0;
}

.thank-you-box {
  background-color: var(--off-white);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.thank-you-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.thank-you-text {
  font-size: 1.1rem;
  color: var(--medium-text);
  line-height: 1.7;
}

.policy-content {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.policy-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content h2:first-child {
  margin-top: 0;
}

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

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

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

.policy-content a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark-text);
  color: var(--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 p {
  margin: 0;
  font-size: 0.95rem;
}

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

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

.rounded {
  border-radius: 12px;
}

.shadow-sm {
  box-shadow: var(--shadow-sm);
}

.shadow {
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .hero-section {
    height: 500px;
  }

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

  .hero-subtitle {
    font-size: 1rem;
  }

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

  .section-text {
    font-size: 1rem;
  }

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

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

  .page-subtitle {
    font-size: 1rem;
  }

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

  .cta-text {
    font-size: 1rem;
  }

  .footer-policy-link {
    margin-left: 0;
    margin-right: 1rem;
    display: inline-block;
    margin-top: 0.5rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    height: 400px;
  }

  .hero-title {
    font-size: 1.5rem;
  }

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