:root {
  --primary-color: #6b46c1;
  --primary-hover: #553c9a;
  --secondary-color: #8b5cf6;
  --text-dark: #1a202c;
  --text-light: #4a5568;
  --bg-light: #f7fafc;
  --border-color: #e2e8f0;
  --success-color: #48bb78;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

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

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

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

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

.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);
}

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

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

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

.section {
  padding: 60px 0;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 80px 0 60px;
  margin-bottom: 0;
}

.page-header h1 {
  color: white;
}

.page-header .lead {
  color: rgba(255, 255, 255, 0.9);
}

.icon-circle {
  width: 80px;
  height: 80px;
  background-color: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--primary-color);
}

.feature-box {
  padding: 30px;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

.service-card {
  padding: 30px;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  height: 100%;
  border-left: 4px solid var(--primary-color);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-left-width: 6px;
}

.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.product-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.product-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
}

.product-features li:last-child {
  border-bottom: none;
}

.product-features li:before {
  content: "✓";
  color: var(--success-color);
  font-weight: bold;
  margin-right: 10px;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
  height: 100%;
}

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

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

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

.cta-section h2 {
  color: white;
}

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

.footer {
  background-color: #2d3748;
  color: white;
  padding: 50px 0 20px;
  margin-top: 60px;
}

.footer h5 {
  color: white;
  margin-bottom: 20px;
}

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

.footer a:hover {
  color: white;
}

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

.footer hr {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 30px 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(45, 55, 72, 0.95);
  color: white;
  padding: 20px 0;
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

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

.benefit-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.value-card {
  background: white;
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow);
  height: 100%;
  transition: transform 0.3s ease;
}

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

.contact-info-box {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

.contact-item {
  margin-bottom: 25px;
}

.contact-item h6 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-item a {
  color: var(--text-dark);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--primary-color);
}

.faq-item {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: 100%;
}

.faq-item h5 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.thank-you-section {
  padding: 100px 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.success-icon {
  color: var(--success-color);
}

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

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

.feature-link {
  display: block;
  padding: 20px;
  background: white;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-dark);
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.feature-link:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  color: var(--text-dark);
}

.feature-link h5 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.legal-content {
  padding-bottom: 60px;
}

.legal-content h2 {
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

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

.legal-content h3 {
  color: var(--text-dark);
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.legal-content ul {
  margin-bottom: 20px;
}

.legal-content ul li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.legal-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

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

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

  .section {
    padding: 40px 0;
  }

  .page-header {
    padding: 50px 0 30px;
    text-align: center;
  }

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

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

  .footer {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .btn-lg {
    padding: 10px 24px;
    font-size: 1rem;
  }

  .cookie-banner .btn {
    margin-top: 10px;
  }
}
