:root {
  --primary-color: #4a90e2;
  --primary-dark: #357abd;
  --primary-light: #6ba3e8;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px 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);
}

.brand-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--bg-white);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 700;
}

.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-section {
  position: relative;
  margin-bottom: 4rem;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.hero-image img {
  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.85) 0%, rgba(53, 122, 189, 0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: var(--bg-white);
  max-width: 800px;
  padding: 2rem;
}

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

.hero-content .lead {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--bg-white);
  padding: 4rem 0 3rem;
  margin-bottom: 3rem;
}

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

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

.content-section h2 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.content-section h3 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.content-section h4 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.content-section h5 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

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

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

.image-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.section-highlight {
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(53, 122, 189, 0.05) 100%);
  padding: 3rem 2rem;
  border-radius: 8px;
  margin: 3rem 0;
}

.topic-card {
  text-align: center;
  padding: 1rem;
}

.topic-card h4 {
  color: var(--primary-color);
  margin-top: 1rem;
}

.info-box,
.disclaimer-box {
  background-color: var(--bg-light);
  border-left: 4px solid var(--primary-color);
  padding: 2rem;
  border-radius: 4px;
}

.disclaimer-box {
  border-left-color: #e74c3c;
}

.faq-section .card {
  border: 1px solid var(--border-color);
  margin-bottom: 1rem;
  border-radius: 4px;
}

.faq-section .card-header {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  padding: 0;
}

.faq-section .card-header button {
  width: 100%;
  text-align: left;
  padding: 1rem 1.5rem;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
}

.faq-section .card-header button:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.faq-section .card-body {
  padding: 1.5rem;
  color: var(--text-light);
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--bg-white);
  padding: 4rem 2rem;
  border-radius: 8px;
  margin: 3rem 0;
}

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

.cta-section .lead {
  color: var(--bg-white);
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--bg-white);
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  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-md);
}

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

.cta-section .btn-primary:hover {
  background-color: var(--bg-light);
  color: var(--primary-dark);
}

.contact-form-wrapper {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
}

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

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

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

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

.site-footer h5 {
  color: var(--bg-white);
  font-weight: 600;
  margin-bottom: 1rem;
}

.site-footer a {
  color: var(--bg-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  color: var(--bg-white);
  padding: 1.5rem 0;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: none;
}

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

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

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

.cookie-banner .btn-light {
  background-color: var(--bg-white);
  color: var(--primary-color);
  border: none;
}

.cookie-banner .btn-outline-light {
  border-color: var(--bg-white);
  color: var(--bg-white);
}

.cookie-banner .btn-outline-light:hover {
  background-color: var(--bg-white);
  color: var(--primary-color);
}

.rounded {
  border-radius: 8px;
}

.shadow-sm {
  box-shadow: var(--shadow-sm);
}

.alert {
  border-radius: 4px;
  padding: 1.5rem;
}

.alert-warning {
  background-color: #fff3cd;
  border-color: #ffe69c;
  color: #856404;
}

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

  .hero-content .lead {
    font-size: 1.25rem;
  }

  .hero-image {
    height: 400px;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .content-section h2 {
    font-size: 1.75rem;
  }

  .image-grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .hero-content h1 {
    font-size: 1.75rem;
  }

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

  .hero-image {
    height: 300px;
  }

  .page-header {
    padding: 3rem 0 2rem;
  }

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

  .cookie-banner .col-lg-8,
  .cookie-banner .col-lg-4 {
    text-align: center;
  }
}
