:root {
  --primary-color: #4a90e2;
  --primary-dark: #357abd;
  --secondary-color: #5ab3e8;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e9ecef;
  --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 5px 25px rgba(0, 0, 0, 0.15);
}

* {
  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;
  background-color: var(--bg-white);
}

.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
}

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

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

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

.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  margin-top: 76px;
  overflow: hidden;
}

.hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.9) 0%, rgba(90, 179, 232, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--bg-white);
  margin-bottom: 2rem;
  opacity: 0.95;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--bg-white);
  padding: 6rem 0 4rem;
  margin-top: 76px;
  text-align: center;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
}

.section {
  padding: 5rem 0;
}

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

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.section-text {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.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(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.feature-card,
.info-card,
.benefit-card {
  background: var(--bg-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

.feature-image,
.info-card-image,
.benefit-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.feature-content,
.info-card-body,
.benefit-content {
  padding: 1.5rem;
}

.feature-title,
.info-card-title,
.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.feature-text,
.info-card-text,
.benefit-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
}

.approach-card,
.value-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  height: 100%;
  transition: transform 0.3s ease;
}

.approach-card:hover,
.value-card:hover {
  transform: translateY(-5px);
}

.approach-title,
.value-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.approach-text,
.value-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
}

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

.custom-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-light);
}

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

.testimonial-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  height: 100%;
}

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

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

.faq-item {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}

.faq-question {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.faq-answer {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 0;
}

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

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.footer {
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 4rem 0 2rem;
}

.footer-heading {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--bg-white);
}

.footer-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

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

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

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

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

.footer-contact {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.75rem;
}

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

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

.footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
}

.footer-legal li {
  margin-left: 1.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(44, 62, 80, 0.95);
  color: var(--bg-white);
  padding: 1.5rem 0;
  z-index: 9999;
  display: none;
  backdrop-filter: blur(10px);
}

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

.cookie-banner p {
  font-size: 0.95rem;
  margin: 0;
}

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

.cookie-banner .btn {
  padding: 0.5rem 1.5rem;
  font-weight: 600;
}

.contact-form-container {
  background: var(--bg-light);
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.form-control {
  border: 1px solid var(--border-color);
  padding: 0.75rem;
  border-radius: 5px;
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

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

.contact-info-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact-info-text {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.legal-content {
  background: var(--bg-white);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.legal-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

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

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

.legal-content p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}

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

.legal-content ul li {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.info-box {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 8px;
  height: 100%;
}

.info-box h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.info-box p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.role-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 10px;
  height: 100%;
}

.role-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

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

.role-list li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--text-light);
  font-size: 1rem;
}

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

.disclaimer-content .alert {
  border-radius: 8px;
  padding: 1.25rem;
  font-size: 1rem;
}

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

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

  .page-title {
    font-size: 2rem;
  }

  .section {
    padding: 3rem 0;
  }

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

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

  .hero-subtitle {
    font-size: 1rem;
  }

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

  .page-title {
    font-size: 1.75rem;
  }

  .cta-title {
    font-size: 1.85rem;
  }

  .footer-legal li {
    margin-left: 0;
    margin-right: 1rem;
  }

  .contact-form-container {
    padding: 1.5rem;
  }

  .legal-content {
    padding: 1.5rem;
  }

  .cookie-banner .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
