:root {
  --primary-color: #0a4a6b;
  --primary-light: #1a7ba8;
  --accent-color: #2d9cdb;
  --text-dark: #2c3e50;
  --text-light: #5a6c7d;
  --bg-light: #f8fafb;
  --white: #ffffff;
  --border-color: #e1e8ed;
}

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

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

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: var(--white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

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

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

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

.hero-section h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

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

.hero-section img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.disclaimer-notice {
  background: var(--bg-light);
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent-color);
  margin-top: 1.5rem;
}

.disclaimer-notice p {
  margin: 0;
  font-size: 0.95rem;
}

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

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

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

.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

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

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

.card-body h3 {
  font-size: 1.25rem;
  color: var(--primary-color);
}

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

.disclaimer-box {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid var(--border-color);
}

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

.disclaimer-box h3:first-child {
  margin-top: 0;
}

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

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

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.btn-primary {
  background: var(--primary-color);
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

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

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

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

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

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

.site-footer p {
  font-size: 0.95rem;
  opacity: 0.9;
}

.footer-disclaimer {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem;
  border-radius: 6px;
  font-size: 0.9rem;
}

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

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

.footer-links a {
  color: var(--white);
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.copyright {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.page-header h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-header .lead {
  font-size: 1.2rem;
  opacity: 0.9;
}

.info-box {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 12px;
  border: 2px solid var(--border-color);
}

.info-box h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

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

.contact-info h3 {
  margin-top: 0;
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  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(10, 74, 107, 0.15);
}

.legal-content h2 {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--border-color);
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  margin-top: 1.5rem;
  font-size: 1.3rem;
}

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

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

.alert {
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-color);
  color: var(--white);
  padding: 1.5rem 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

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

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

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

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

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

  h2 {
    font-size: 1.5rem;
  }

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

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

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

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

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

@media (max-width: 576px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 1.75rem;
  }

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

  .card-img-top {
    height: 180px;
  }
}
