:root {
  --primary-color: #0066cc;
  --secondary-color: #004d99;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #e0e0e0;
  --success-color: #28a745;
}

* {
  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;
}

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

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  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 {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
}

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

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

.hero-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-section h1 {
  font-weight: 700;
  color: var(--text-dark);
}

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

.section-why,
.section-benefits,
.section-services,
.section-audience,
.section-testimonials {
  padding: 4rem 0;
}

.section-why h2,
.section-benefits h2,
.section-services h2,
.section-audience h2,
.section-testimonials h2 {
  font-weight: 700;
  color: var(--text-dark);
}

.card {
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

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

.icon-circle {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.icon-number {
  font-size: 1.5rem;
  font-weight: 700;
}

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

.benefits-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
}

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

.service-card img {
  height: 200px;
  object-fit: cover;
}

.audience-card {
  padding: 1.5rem;
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.audience-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 102, 204, 0.1);
}

.audience-card h5 {
  color: var(--primary-color);
  font-weight: 600;
}

.testimonial-card {
  padding: 2rem;
  background: var(--white);
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

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

.testimonial-author {
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.section-cta {
  padding: 4rem 0;
}

.section-cta.bg-primary {
  background-color: var(--primary-color) !important;
}

.footer {
  padding: 3rem 0 1rem;
}

.footer h5 {
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

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

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

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

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 2rem 0 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--white);
  padding: 1rem 0;
  z-index: 9999;
  display: none;
}

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

.cookie-banner p {
  margin: 0;
}

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

.page-header {
  padding: 3rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  margin-bottom: 3rem;
}

.page-header h1 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-content {
  padding: 2rem 0 4rem;
}

.contact-info h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 1rem;
}

.contact-form .form-control {
  border: 2px solid var(--border-color);
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.1);
}

.contact-form label {
  font-weight: 600;
  color: var(--text-dark);
}

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

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

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

.checkmark {
  display: inline-block;
  width: 80px;
  height: 80px;
  background-color: var(--success-color);
  color: var(--white);
  border-radius: 50%;
  font-size: 3rem;
  line-height: 80px;
  text-align: center;
}

.legal-content {
  padding: 2rem 0 4rem;
}

.legal-content h1 {
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.legal-content h3 {
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

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

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

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

.service-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

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

.value-card {
  padding: 1.5rem;
}

.value-icon .icon-circle {
  background-color: var(--bg-light);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

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

  .section-why,
  .section-benefits,
  .section-services,
  .section-audience,
  .section-testimonials,
  .section-cta {
    padding: 2rem 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }

  .cookie-banner .col-md-8,
  .cookie-banner .col-md-4 {
    text-align: center;
    margin-bottom: 1rem;
  }
}
