:root {
  --primary-blue: #4a90e2;
  --dark-blue: #2c5f8d;
  --light-blue: #e8f4fa;
  --neutral-dark: #333333;
  --neutral-gray: #666666;
  --neutral-light: #f5f7fa;
  --white: #ffffff;
}

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

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: var(--neutral-dark);
  background-color: var(--white);
}

.site-header {
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.navbar-brand:hover {
  color: var(--dark-blue);
}

.nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--neutral-dark);
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

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

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

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

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

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

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

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

.content-section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 1.5rem;
}

.content-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.content-section p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--neutral-gray);
}

.content-section .lead {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--neutral-dark);
}

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

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

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

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.rounded {
  border-radius: 12px;
}

.img-fluid {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.75rem 0;
  padding-left: 1.75rem;
  position: relative;
  font-size: 1.125rem;
  color: var(--neutral-gray);
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.25rem;
}

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

.disclaimer-box p {
  margin-bottom: 0.5rem;
}

.disclaimer-box strong {
  color: var(--dark-blue);
}

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

.testimonial-card p {
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--dark-blue);
  font-size: 1rem;
}

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

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-section .btn-primary {
  background-color: var(--white);
  color: var(--primary-blue);
  border-color: var(--white);
}

.cta-section .btn-primary:hover {
  background-color: var(--neutral-light);
  border-color: var(--neutral-light);
  color: var(--dark-blue);
}

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

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

.site-footer p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  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.2);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  margin-bottom: 0;
}

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

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

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

.info-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.info-card h4 {
  color: var(--dark-blue);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.info-card p {
  font-size: 1rem;
  margin-bottom: 0;
}

.commitment-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  border-top: 4px solid var(--primary-blue);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.commitment-card h5 {
  color: var(--dark-blue);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.commitment-card p {
  font-size: 1rem;
  margin-bottom: 0;
}

.form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 0.75rem;
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

.contact-info-card {
  background-color: var(--light-blue);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.contact-info-card h5 {
  color: var(--dark-blue);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.contact-info-card p {
  font-size: 1rem;
  margin-bottom: 0;
  color: var(--neutral-dark);
}

.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-content h1 {
  color: var(--dark-blue);
  margin-bottom: 1.5rem;
}

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

.policy-content h2 {
  margin-top: 3rem;
  color: var(--dark-blue);
}

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

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

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

.important-notice {
  background-color: #fff3cd;
  border-left-color: #ffc107;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--neutral-dark);
  color: var(--white);
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  display: none;
}

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

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-content p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

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

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

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-buttons .btn {
  white-space: nowrap;
}

.cookie-buttons .btn-secondary {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}

.cookie-buttons .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

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

  .hero-content p {
    font-size: 1.125rem;
  }

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

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

  .page-header h1 {
    font-size: 2rem;
  }

  .cookie-content {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-buttons .btn {
    flex: 1;
  }

  .nav-link {
    margin-left: 0;
  }
}

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

  .content-section h2 {
    font-size: 1.5rem;
  }

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