:root {
  --primary-color: #5ba3d0;
  --primary-dark: #4a8bb8;
  --primary-light: #7bc0e8;
  --secondary-color: #f5f5f0;
  --accent-warm: #e8d5c4;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --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;
  font-size: 16px;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

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

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.rounded {
  border-radius: 12px;
}

.btn {
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 4px 12px rgba(91, 163, 208, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(91, 163, 208, 0.4);
  color: var(--white);
}

.btn-secondary {
  background-color: var(--text-light);
  color: var(--white);
}

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

.btn-outline {
  background-color: transparent;
  color: var(--text-dark);
  border: 2px solid var(--border-color);
}

.btn-outline:hover {
  background-color: var(--light-gray);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.btn-block {
  display: block;
  width: 100%;
}

.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar {
  padding: 1rem 0;
}

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

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

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

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

.hero-section {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-warm));
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-section h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.hero-section .lead {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.hero-section img {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.content-section {
  padding: 80px 0;
}

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

.content-section h2 {
  margin-bottom: 1.5rem;
}

.content-section img {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.faq-item {
  background-color: var(--white);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.faq-item h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.contact-section {
  background: linear-gradient(135deg, var(--light-gray), var(--secondary-color));
}

.contact-info {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(91, 163, 208, 0.1);
  outline: none;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
  color: var(--text-dark);
}

.footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 60px 0 20px;
  margin-top: 0;
}

.footer h5 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

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

.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(--primary-light);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

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

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

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

.cookie-content a {
  color: var(--primary-color);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background-color: var(--white);
  padding: 40px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
}

.cookie-modal-content h3 {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.cookie-option {
  margin-bottom: 1rem;
}

.cookie-option label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.cookie-option input[type="checkbox"] {
  margin-right: 12px;
  width: 20px;
  height: 20px;
}

.policy-section {
  padding: 120px 0 60px;
  min-height: 80vh;
}

.policy-section h1 {
  margin-bottom: 0.5rem;
}

.policy-section h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-size: 1.6rem;
}

.policy-section h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.policy-section .text-muted {
  margin-bottom: 2rem;
}

.policy-back {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border-color);
}

.thank-you-section {
  padding: 140px 0 80px;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  background-color: var(--white);
  padding: 60px 40px;
  border-radius: 12px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
}

.thank-you-content h1 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.thank-you-actions {
  margin-top: 2rem;
}

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

  .content-section {
    padding: 60px 0;
  }

  .content-section .col-lg-6 {
    margin-bottom: 2rem;
  }
}

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

  h2 {
    font-size: 1.6rem;
  }

  .hero-section {
    padding: 120px 0 60px;
  }

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

  .hero-section .lead {
    font-size: 1.1rem;
  }

  .btn {
    padding: 10px 24px;
  }

  .btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons .btn {
    width: 100%;
  }

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

  .footer {
    padding: 40px 0 20px;
  }
}
