:root {
  --primary-color: #5b6cd6;
  --primary-dark: #4854b8;
  --secondary-color: #7c87e3;
  --text-dark: #1a1a2e;
  --text-medium: #4a4a5c;
  --text-light: #6b6b7e;
  --bg-light: #f8f9fc;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --shadow-sm: 0 2px 8px rgba(91, 108, 214, 0.08);
  --shadow-md: 0 4px 16px rgba(91, 108, 214, 0.12);
  --transition: all 0.3s ease;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

.navbar {
  padding: 1.5rem 0;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

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

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

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

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -80px;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

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

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-medium);
  font-weight: 400;
}

.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
  text-align: center;
}

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

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

.section-padding {
  padding: 100px 0;
}

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

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

.content-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  margin-top: 3rem;
  color: var(--text-dark);
}

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

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

.feature-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--border-color);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

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

.testimonial-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary-color);
  height: 100%;
}

.testimonial-text {
  font-size: 1.125rem;
  color: var(--text-medium);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

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

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

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

.faq-question {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.faq-answer {
  font-size: 1.125rem;
  color: var(--text-medium);
  line-height: 1.8;
}

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

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--bg-white);
}

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

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--bg-white);
  padding: 0.875rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
  border: 2px solid transparent;
}

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

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

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

.contact-info-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.contact-info-text {
  font-size: 1.125rem;
  color: var(--text-medium);
  line-height: 1.8;
}

.contact-form-wrapper {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.form-control {
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(91, 108, 214, 0.1);
}

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

.form-check-label {
  color: var(--text-medium);
}

.thank-you-section {
  padding: 200px 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

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

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

.policy-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

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

.policy-subheading {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

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

.policy-list {
  font-size: 1.125rem;
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  padding-left: 1.5rem;
}

.policy-list li {
  margin-bottom: 0.75rem;
}

.footer {
  background-color: var(--text-dark);
  color: var(--bg-light);
  padding: 60px 0 30px;
  margin-top: 0;
}

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

.footer-text {
  font-size: 1rem;
  color: var(--bg-light);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

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

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

.footer-links a {
  color: var(--bg-light);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--bg-white);
  padding-left: 4px;
}

.footer-copyright {
  color: var(--bg-light);
  font-size: 0.875rem;
  margin-top: 1rem;
}

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

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

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

.cookie-text {
  flex: 1;
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--bg-light);
}

.cookie-link {
  color: var(--bg-white);
  text-decoration: underline;
}

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

.cookie-buttons .btn {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  white-space: nowrap;
}

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

.cookie-buttons .btn-secondary:hover {
  background-color: var(--bg-white);
  color: var(--text-dark);
}

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

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

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

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

  .content-heading {
    font-size: 1.75rem;
  }

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

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .hero {
    height: 70vh;
    min-height: 500px;
  }

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

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

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

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

  .contact-form-wrapper {
    padding: 2rem;
  }
}
