:root {
  --primary-color: #7c3aed;
  --primary-dark: #6d28d9;
  --primary-light: #a78bfa;
  --secondary-color: #10b981;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --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;
  font-size: 16px;
}

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

.navbar {
  padding: 1rem 0;
}

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

.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, #f9fafb 0%, #e0e7ff 100%);
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-buttons .btn {
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 8px;
}

.page-hero {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
}

.page-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
}

.page-subtitle {
  font-size: 18px;
  opacity: 0.9;
}

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

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  transition: all 0.3s;
}

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

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
  transition: all 0.3s;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.step-card {
  padding: 30px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.service-content {
  padding: 30px;
}

.service-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

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

.feature-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 18px;
}

.benefit-card {
  padding: 30px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}

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

.benefit-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.benefit-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.testimonial-card {
  padding: 30px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 16px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  color: var(--text-dark);
  font-size: 16px;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 14px;
}

.expert-card {
  padding: 30px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.expert-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.expert-role {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.faq-item {
  padding: 25px 0;
  border-bottom: 1px solid var(--border-color);
}

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

.faq-question {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.faq-answer {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
}

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

.cta-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.offering-card {
  padding: 30px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.offering-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.value-item h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-info-card {
  padding: 30px;
  background: var(--bg-light);
  border-radius: 12px;
  margin-bottom: 20px;
}

.contact-info-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.contact-detail strong {
  color: var(--primary-color);
  font-size: 14px;
  margin-bottom: 5px;
}

.contact-detail span {
  color: var(--text-dark);
  font-size: 16px;
}

.contact-form-card {
  padding: 40px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.form-group label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

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

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.1);
}

.thank-you-card {
  padding: 60px 40px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--secondary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 700;
  margin: 0 auto 30px;
}

.thank-you-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.thank-you-text {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 15px;
}

.thank-you-actions {
  margin: 40px 0;
}

.thank-you-info {
  padding: 30px;
  background: var(--bg-light);
  border-radius: 8px;
  margin-top: 30px;
}

.policy-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 40px;
  margin-bottom: 20px;
}

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

.policy-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 30px;
  margin-bottom: 15px;
}

.policy-content p {
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.8;
}

.policy-content ul {
  margin-bottom: 20px;
  padding-left: 25px;
}

.policy-content ul li {
  color: var(--text-light);
  margin-bottom: 10px;
  line-height: 1.7;
}

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

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

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

.footer-heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

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

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

.footer-contact li {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-contact strong {
  color: var(--white);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: var(--white);
  padding: 20px 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: 14px;
}

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

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

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

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

  .hero-subtitle {
    font-size: 18px;
  }

  .section-title {
    font-size: 30px;
  }

  .page-title {
    font-size: 32px;
  }

  .navbar-nav {
    padding-top: 15px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 50px 0;
  }

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

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section-title {
    font-size: 26px;
  }

  .cta-title {
    font-size: 28px;
  }

  .thank-you-card {
    padding: 40px 20px;
  }

  .contact-form-card {
    padding: 30px 20px;
  }
}
