:root {
  --primary-color: #2c3e78;
  --primary-dark: #1e2a54;
  --secondary-color: #f8f9fa;
  --text-color: #333333;
  --text-muted: #6c757d;
  --border-color: #dee2e6;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 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-color);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.navbar-brand {
  font-size: 1.5rem;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

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

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

.hero-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.hero-section .lead {
  color: var(--text-muted);
  font-size: 1.2rem;
}

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

.content-section h2 {
  color: var(--primary-color);
  font-weight: 700;
}

.content-section h3 {
  color: var(--primary-dark);
  font-weight: 600;
}

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

.info-box {
  background: #f8f9fa;
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
}

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

.page-header {
  padding: 4rem 0 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.page-header h1 {
  color: var(--primary-color);
}

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

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

.cta-section h2 {
  color: white;
  font-weight: 700;
}

.cta-section .lead {
  color: rgba(255, 255, 255, 0.9);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  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-lg);
}

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

.btn-outline-primary:hover {
  background-color: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-group-custom {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.rounded {
  border-radius: 8px;
}

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

.footer {
  background-color: #f8f9fa;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
  border-top: 1px solid var(--border-color);
}

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

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

.footer a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.footer ul {
  padding-left: 0;
}

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

.contact-info {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.form-control {
  border-radius: 8px;
  border: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(44, 62, 120, 0.15);
}

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

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

.cookie-banner p {
  margin: 0;
  color: white;
}

.cookie-banner .btn-light {
  border-radius: 6px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 3rem 0;
  }

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

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

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

  .btn-group-custom {
    flex-direction: column;
  }

  .btn-group-custom .btn {
    width: 100%;
  }

  .footer {
    text-align: center;
  }
}

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

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