:root {
  --primary-color: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #3b82f6;
  --text-dark: #1f2937;
  --text-gray: #6b7280;
  --text-light: #9ca3af;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --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(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-white);
  padding-top: 76px;
}

.navbar {
  transition: all 0.3s ease;
}

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

.brand-logo {
  color: var(--primary-color);
  font-weight: 700;
}

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

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

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

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

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

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

.section-text {
  font-size: 1.125rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}

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

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

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

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

.card {
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

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

.card-text {
  color: var(--text-gray);
  line-height: 1.6;
}

.feature-box {
  padding: 2rem;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-box:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.feature-box h4 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.profile-card {
  padding: 2rem;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

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

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

.testimonial-card {
  padding: 2rem;
  background: var(--bg-white);
  border-left: 4px solid var(--primary-color);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
}

.testimonial-text {
  font-style: italic;
  color: var(--text-gray);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0;
}

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

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

.faq-question {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.faq-answer {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 0;
}

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

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

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

.footer {
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 60px 0 20px;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--bg-white);
}

.footer-text {
  color: var(--text-light);
  line-height: 1.8;
}

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

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

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

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

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.footer-legal a {
  color: var(--text-light);
  text-decoration: none;
  margin: 0 0.5rem;
}

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

.footer-copyright {
  color: var(--text-light);
  margin-top: 1rem;
}

.page-header {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
  text-align: center;
}

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

.page-subtitle {
  font-size: 1.25rem;
  color: var(--text-gray);
}

.principle-card {
  padding: 2rem;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

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

.principle-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.principle-title {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.principle-text {
  color: var(--text-gray);
  line-height: 1.6;
}

.info-box {
  padding: 2rem;
  background: var(--bg-light);
  border-left: 4px solid var(--primary-color);
  border-radius: 0.5rem;
}

.contact-info {
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 0.75rem;
}

.contact-item {
  line-height: 1.8;
}

.contact-form-wrapper {
  padding: 2rem;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-sm);
}

.form-disclaimer {
  color: var(--text-gray);
  font-size: 0.875rem;
}

.thankyou-section {
  padding: 100px 0;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
}

.thankyou-icon {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  width: 100px;
  height: 100px;
  line-height: 100px;
  background: var(--bg-light);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.thankyou-text {
  font-size: 1.25rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.thankyou-info {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.legal-content {
  font-size: 1rem;
  line-height: 1.8;
}

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

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

.legal-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

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

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

.legal-content p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

.legal-content a {
  color: var(--primary-color);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.disclaimer-content .alert {
  margin-bottom: 2rem;
}

.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.1);
  z-index: 9999;
  display: none;
}

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

.cookie-text {
  margin: 0;
  color: var(--bg-white);
  font-size: 0.95rem;
}

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

.cookie-banner .btn-light {
  background-color: var(--bg-white);
  color: var(--text-dark);
  border: none;
}

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

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

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.25rem;
  }

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

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

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

@media (max-width: 767px) {
  body {
    padding-top: 70px;
  }

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

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

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

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

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

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

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

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

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

  .thankyou-title {
    font-size: 1.875rem;
  }

  .cookie-banner .btn {
    margin-top: 1rem;
    width: 100%;
  }

  .cookie-banner .text-md-right {
    text-align: left !important;
  }
}
