:root {
  --primary-color: #7c3aed;
  --primary-dark: #5b21b6;
  --primary-light: #a78bfa;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --white: #ffffff;
}

* {
  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;
  padding-top: 76px;
}

.navbar {
  transition: all 0.3s ease;
}

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

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

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

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

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

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

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

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

.hero-section h1 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.hero-section .lead {
  color: var(--text-light);
  font-size: 1.25rem;
}

.hero-section img {
  max-height: 500px;
  object-fit: cover;
}

.features-section {
  background-color: var(--white);
}

.feature-card {
  background: var(--bg-light);
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  color: var(--primary-color);
}

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

.cta-section h2 {
  color: var(--white);
}

.cta-section .lead {
  color: rgba(255, 255, 255, 0.9);
}

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

.page-header h1 {
  color: var(--text-dark);
}

.page-header .lead {
  color: var(--text-light);
}

.value-card {
  background: var(--bg-light);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.value-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card {
  padding: 2rem;
  background: var(--white);
}

.service-card h2 {
  color: var(--text-dark);
}

.service-card ul {
  color: var(--text-light);
}

.contact-form .form-control {
  padding: 0.75rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.3s ease;
}

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

.contact-info {
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 12px;
}

.thank-you-section {
  padding: 150px 0;
  text-align: center;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.thank-you-icon {
  color: var(--primary-color);
}

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

.legal-content h2 {
  color: var(--text-dark);
  font-size: 1.75rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-light);
}

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

.footer {
  margin-top: 80px;
}

.footer h5,
.footer h6 {
  color: var(--white);
}

.footer a {
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer a:hover {
  opacity: 0.8;
}

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

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

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

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0 40px;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

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

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

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

  .cookie-banner .text-right {
    text-align: center !important;
    margin-top: 1rem;
  }
}
