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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #2c3e50;
  line-height: 1.6;
  background-color: #ffffff;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2874a6;
  letter-spacing: -0.5px;
}

.navbar {
  padding: 1rem 0;
}

.navbar-light .navbar-nav .nav-link {
  color: #2c3e50;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #2874a6;
}

.hero-section {
  position: relative;
  height: 600px;
  overflow: hidden;
}

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

.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(40, 116, 166, 0.85) 0%, rgba(28, 92, 135, 0.75) 100%);
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #f8f9fa;
  margin-bottom: 0;
}

.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #7f8c8d;
  margin-bottom: 2rem;
}

.section-text {
  font-size: 1.0625rem;
  color: #34495e;
  margin-bottom: 1rem;
}

.btn-primary {
  background-color: #2874a6;
  border-color: #2874a6;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #1c5c87;
  border-color: #1c5c87;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 116, 166, 0.3);
}

.btn-outline-primary {
  color: #2874a6;
  border-color: #2874a6;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #2874a6;
  border-color: #2874a6;
  color: #ffffff;
}

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

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.card-title {
  color: #2874a6;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.info-box {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
}

.info-box img {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.info-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.benefit-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
}

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

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

.custom-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2874a6;
  font-weight: bold;
}

.disclaimer-box {
  background-color: #e8f4f8;
  border-left: 4px solid #2874a6;
  padding: 1.5rem;
  border-radius: 4px;
}

.testimonial-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.testimonial-text {
  font-size: 1.0625rem;
  font-style: italic;
  color: #34495e;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: #2874a6;
  margin-bottom: 0;
}

.faq-item {
  background-color: #ffffff;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-question {
  color: #2874a6;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.faq-answer {
  color: #34495e;
  margin-bottom: 0;
}

.cta-section {
  background: linear-gradient(135deg, #2874a6 0%, #1c5c87 100%);
  padding: 5rem 0;
}

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

.cta-text {
  color: #f8f9fa;
  font-size: 1.125rem;
  margin-bottom: 0;
}

.btn-light {
  background-color: #ffffff;
  color: #2874a6;
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-light:hover {
  background-color: #f8f9fa;
  color: #1c5c87;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
  color: #ffffff;
  border-color: #ffffff;
  padding: 0.375rem 0.75rem;
}

.btn-outline-light:hover {
  background-color: #ffffff;
  color: #2874a6;
}

.footer {
  background-color: #1a252f;
  color: #ecf0f1;
  padding: 3rem 0 1rem;
}

.footer-heading {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.footer-text {
  color: #bdc3c7;
  font-size: 0.9375rem;
}

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

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

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-copyright {
  color: #7f8c8d;
  font-size: 0.875rem;
  margin-bottom: 0;
  padding-top: 1rem;
  border-top: 1px solid #34495e;
}

.page-header {
  background-color: #f8f9fa;
  padding: 4rem 0;
  text-align: center;
}

.page-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.page-subtitle {
  font-size: 1.125rem;
  color: #7f8c8d;
  margin-bottom: 0;
}

.approach-card {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.value-item {
  margin-bottom: 1.5rem;
}

.value-item:last-child {
  margin-bottom: 0;
}

.info-box-simple {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #2874a6;
}

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

.contact-form-wrapper {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
}

.form-control {
  border: 1px solid #dee2e6;
  padding: 0.75rem;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: #2874a6;
  box-shadow: 0 0 0 0.2rem rgba(40, 116, 166, 0.25);
}

.thank-you-content {
  padding: 4rem 2rem;
}

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

.legal-heading {
  color: #2874a6;
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

.legal-subheading {
  color: #34495e;
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  color: #34495e;
  margin-bottom: 1rem;
}

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

.legal-content ul li {
  color: #34495e;
  margin-bottom: 0.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2874a6;
  color: #ffffff;
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.hidden {
  display: none;
}

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

.cookie-link {
  color: #ffffff;
  text-decoration: underline;
}

.cookie-link:hover {
  color: #f8f9fa;
}

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

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

  .section {
    padding: 3rem 0;
  }

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

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

@media (max-width: 767px) {
  .hero-section {
    height: 500px;
  }

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

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

  .cookie-banner .btn {
    margin-top: 0.5rem;
  }
}
