:root {
  --primary-color: #7c3aed;
  --primary-dark: #6d28d9;
  --primary-light: #a78bfa;
  --background-light: #f9fafb;
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --border-light: #e5e7eb;
  --success-color: #059669;
  --danger-color: #dc2626;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

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

.header {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.25rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
}

.brand-text {
  color: var(--primary-color);
}

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

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

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

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

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

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

.btn-outline-secondary {
  color: var(--text-dark);
  border-color: var(--text-dark);
  font-weight: 600;
}

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

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

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

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

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

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

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

.bg-primary-section h2 {
  color: white;
}

.bg-primary-section .cta-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

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

.card-feature:hover {
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
  border-color: var(--primary-color);
}

.card-feature .card-title {
  color: var(--primary-color);
  font-weight: 600;
}

.benefit-box {
  padding: 2rem;
  text-align: center;
  border-radius: 12px;
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.benefit-box:hover {
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
  border-color: var(--primary-color);
}

.benefit-box h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-card {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: #ffffff;
  border: 1px solid var(--border-light);
}

.service-card:hover {
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.15);
  transform: translateY(-5px);
}

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

.service-card h3 {
  padding: 1.5rem 1.5rem 0;
  color: var(--primary-color);
  font-weight: 600;
}

.service-card p {
  padding: 0.5rem 1.5rem 1.5rem;
  color: var(--text-muted);
}

.testimonial-card {
  background-color: #f9fafb;
  border-left: 4px solid var(--primary-color);
  padding: 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.9rem;
}

.value-box {
  text-align: center;
  padding: 2rem;
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.value-box:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
}

.value-box h3 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.page-header {
  padding: 60px 0;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  border-bottom: 1px solid var(--border-light);
}

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

.service-heading {
  font-size: 1.75rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-dark);
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
}

.advantage-box {
  text-align: center;
  padding: 1.5rem;
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid var(--border-light);
}

.advantage-box h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.contact-box {
  background-color: var(--background-light);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-light);
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-info {
  background-color: var(--background-light);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  text-align: center;
}

.contact-form {
  background-color: var(--background-light);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-light);
}

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

.contact-form .form-control {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 0.75rem;
  color: var(--text-dark);
}

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

.custom-control-label {
  color: var(--text-dark);
  cursor: pointer;
}

.custom-control-label a {
  color: var(--primary-color);
  font-weight: 600;
}

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

.benefits-list li {
  padding: 0.75rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--text-dark);
}

.benefits-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.5rem;
}

.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.thank-you-box {
  background-color: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thank-you-title {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 700;
}

.thank-you-message {
  font-size: 1.25rem;
  color: var(--text-dark);
  font-weight: 600;
}

.thank-you-text {
  color: var(--text-muted);
  font-size: 1rem;
}

.thank-you-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.legal-content {
  background-color: #ffffff;
  padding: 2rem;
}

.legal-content h2 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.legal-content h3 {
  color: var(--primary-color);
  font-size: 1.125rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

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

.legal-content ul {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.footer {
  background-color: var(--text-dark);
  color: rgba(255, 255, 255, 0.9);
}

.footer-title {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin: 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: white;
  padding: 1.5rem 0;
  border-top: 3px solid var(--primary-color);
  z-index: 999;
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.cookie-link {
  color: var(--primary-light);
  font-size: 0.875rem;
  text-decoration: underline;
}

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

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

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

  .navbar-light .navbar-nav .nav-link {
    margin-left: 0;
    padding: 0.5rem 0;
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .thank-you-actions .btn {
    width: 100%;
  }

  .hero {
    padding: 40px 0;
  }

  .service-image {
    height: 200px;
  }

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

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

  .contact-form,
  .contact-info,
  .contact-box {
    padding: 1.5rem;
  }
}

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

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

  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  .navbar-brand {
    gap: 8px;
    font-size: 1rem;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .legal-content {
    padding: 1rem;
  }

  .thank-you-box {
    padding: 1.5rem;
  }

  .thank-you-title {
    font-size: 1.5rem;
  }

  .service-card h3 {
    padding: 1rem 1rem 0;
  }

  .service-card p {
    padding: 0.5rem 1rem 1rem;
  }
}
