:root {
  --primary-color: #0077b6;
  --primary-dark: #005f8f;
  --primary-light: #48cae4;
  --text-dark: #1a1a2e;
  --text-light: #666680;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-white);
}

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.25rem;
}

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

.navbar {
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
}

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

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

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

.hero-section {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
  padding: 4rem 0;
}

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

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

.hero-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.disclaimer-note {
  font-size: 0.875rem;
  color: var(--text-light);
  font-style: italic;
  padding: 1rem;
  background-color: var(--bg-light);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary-color);
}

.page-header {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
  padding: 3rem 0;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 0.75rem;
}

.page-header .lead {
  margin-bottom: 0;
}

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

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

.content-block img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.content-block ul {
  color: var(--text-light);
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

.content-block ul li {
  margin-bottom: 0.5rem;
}

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

.disclaimer-box {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.disclaimer-box h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.disclaimer-box p:last-child {
  margin-bottom: 0;
  font-style: italic;
  color: var(--text-light);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline-secondary {
  border-color: var(--border-color);
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
}

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

.contact-info {
  background-color: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 2rem;
}

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

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

.contact-item h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact-item p {
  margin-bottom: 0;
}

.contact-form .form-group {
  margin-bottom: 1.25rem;
}

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

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

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
}

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

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

.footer {
  padding: 3rem 0 1.5rem;
}

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

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

.footer-disclaimer {
  font-size: 0.875rem;
  font-style: italic;
  margin-top: 1rem;
}

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

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

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

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

.footer .border-top {
  border-color: rgba(255, 255, 255, 0.1) !important;
  margin-top: 2rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  z-index: 1000;
  display: none;
}

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

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

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

  h2 {
    font-size: 1.5rem;
  }

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

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

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

  .content-block .row {
    flex-direction: column;
  }

  .content-block img {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

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

  h2 {
    font-size: 1.35rem;
  }

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

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

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

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

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

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-content p {
    margin-bottom: 0.5rem;
  }

  .footer {
    text-align: center;
  }

  .footer .col-lg-4 {
    margin-bottom: 2rem;
  }
}
