:root {
  --primary-color: #0077b6;
  --primary-dark: #005f8a;
  --primary-light: #90e0ef;
  --text-dark: #1a1a2e;
  --text-muted: #4a4a68;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e9ecef;
}

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

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

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 1.5rem;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--text-dark) 0%, #2d2d4a 100%);
  color: var(--bg-white);
  padding: 1rem 0;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-banner p {
  color: var(--bg-white);
  margin: 0;
  font-size: 0.9rem;
}

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

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

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

.cookie-banner.hidden {
  display: none;
}

.navbar {
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  margin-right: 0.5rem;
  object-fit: cover;
}

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

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

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

.nav-item.active .nav-link {
  color: var(--primary-color) !important;
}

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

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

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

.hero-image {
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 119, 182, 0.15);
}

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

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

.page-header .lead {
  color: var(--text-muted);
}

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

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

.content-image {
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
}

.info-box {
  background: linear-gradient(135deg, var(--bg-light) 0%, #e8f4f8 100%);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  border-radius: 0 12px 12px 0;
  margin-top: 1.5rem;
}

.info-box h3 {
  color: var(--primary-color);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.info-box p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--text-muted);
}

.disclaimer-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  padding: 0.75rem;
  background-color: var(--bg-light);
  border-radius: 8px;
  display: inline-block;
}

.contact-info h3 {
  font-size: 1rem;
  color: var(--primary-color);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

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

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

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

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
}

.footer-section {
  background: linear-gradient(135deg, var(--text-dark) 0%, #2d2d4a 100%);
  color: var(--bg-white);
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
}

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

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-section .disclaimer-text {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

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

.border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

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

  h2 {
    font-size: 1.5rem;
  }

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

  .hero-image {
    margin-top: 2rem;
  }

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

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

  h2 {
    font-size: 1.35rem;
  }

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

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

  .cookie-banner .row {
    text-align: center;
  }

  .cookie-banner .col-md-4 {
    margin-top: 1rem;
  }

  .footer-section {
    text-align: center;
  }
}
