:root {
  --primary-blue: #2563eb;
  --primary-blue-dark: #1e40af;
  --secondary-blue: #3b82f6;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --dark-gray: #343a40;
  --white: #ffffff;
  --black: #000000;
}

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

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

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

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

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

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

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

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

.page-header-legal {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  padding: 40px 0;
}

.info-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.product-category-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

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

.advantage-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-blue);
}

.advantage-item {
  background: var(--white);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.advantage-item:hover {
  transform: scale(1.05);
}

.service-card {
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.target-audience-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.audience-list {
  list-style: none;
  padding-left: 0;
}

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

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

.testimonial-card {
  background: var(--white);
  border-left: 4px solid var(--primary-blue);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.testimonial-author {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--light-gray);
}

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

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

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

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

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

.value-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.offering-card {
  background: var(--light-gray);
  border-radius: 8px;
}

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

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

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

.service-detail-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

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

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

.service-includes li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}

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

.process-step {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  line-height: 60px;
  font-size: 1.5rem;
  font-weight: bold;
}

.product-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.product-card img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}

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

.product-features li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}

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

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

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

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

.contact-info-item h5 {
  color: var(--primary-blue);
}

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

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

.contact-form-wrapper {
  background: var(--light-gray);
  border-radius: 8px;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.form-check-input:checked {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.faq-item {
  padding: 20px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: var(--light-gray);
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.success-icon {
  display: inline-block;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
}

.legal-content h2 {
  color: var(--primary-blue);
}

.legal-content h4 {
  color: var(--primary-blue-dark);
}

.legal-content ul {
  margin: 15px 0;
  padding-left: 30px;
}

.legal-content a {
  color: var(--primary-blue);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

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

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

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

footer {
  background: var(--dark-gray);
}

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

footer a:hover {
  opacity: 0.8;
}

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

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

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

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

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

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

  .advantage-number {
    font-size: 2rem;
  }

  .step-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.2rem;
  }
}

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

  .display-4 {
    font-size: 1.8rem;
  }
}
