:root {
  --primary-color: #2c5f7d;
  --secondary-color: #f4c430;
  --accent-color: #4a90a4;
  --text-dark: #1a1a1a;
  --text-light: #4a4a4a;
  --background-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #e0e0e0;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

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

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.site-header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
}

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

.navbar-brand:hover {
  color: var(--accent-color);
}

.navbar-light .navbar-nav .nav-link {
  color: var(--text-dark);
  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: var(--primary-color);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

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

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 2;
}

.hero h1 {
  color: var(--white);
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
}

.hero .lead {
  color: var(--white);
  font-size: 1.25rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
}

.page-header {
  background-color: var(--background-light);
  padding: 4rem 0 3rem;
  margin-bottom: 3rem;
}

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

.content-section.bg-light {
  background-color: var(--background-light);
}

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

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

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

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

.testimonials .card-body {
  padding: 2rem;
}

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

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

.faq-section .faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.faq-section .faq-item:last-child {
  border-bottom: none;
}

.faq-section .faq-item h5 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.cta-section {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.cta-section .btn-primary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--text-dark);
}

.cta-section .btn-primary:hover {
  background-color: var(--white);
  border-color: var(--white);
}

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

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(44, 95, 125, 0.25);
}

.contact-info h5 {
  color: var(--primary-color);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.thank-you-section {
  padding: 6rem 0;
  text-align: center;
}

.thank-you-actions {
  margin: 3rem 0;
}

.thank-you-actions .btn {
  margin: 0.5rem;
}

.thank-you-info {
  margin-top: 4rem;
  padding: 2rem;
  background-color: var(--background-light);
  border-radius: 8px;
}

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

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

.legal-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--accent-color);
}

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

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

.site-footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.site-footer h5 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.site-footer p,
.site-footer li {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

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

.site-footer a:hover {
  color: var(--secondary-color);
}

.site-footer .list-unstyled {
  padding-left: 0;
}

.site-footer .border-top {
  border-color: rgba(255, 255, 255, 0.2);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-top: 2px solid var(--border-color);
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  display: none;
}

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

.cookie-banner p {
  margin-bottom: 0;
  color: var(--text-light);
}

.cookie-banner .btn {
  white-space: nowrap;
}

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

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

  .hero-image {
    height: 400px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .content-section {
    padding: 3rem 0;
  }

  .cookie-banner .btn {
    margin-top: 1rem;
    width: 100%;
  }
}

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

  .content-section img {
    margin-top: 2rem;
  }
}
