:root {
  --primary-color: #ffc107;
  --secondary-color: #343a40;
  --text-dark: #212529;
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #dee2e6;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

a {
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
}

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

.hero-section {
  position: relative;
  margin-bottom: 0;
}

.hero-image-wrapper {
  position: relative;
  max-height: 600px;
  overflow: hidden;
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  min-height: 400px;
  max-height: 600px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  color: white;
  text-align: center;
  padding: 2rem;
}

.hero-content h1 {
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-dark);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
}

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

.btn-outline-primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

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

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

.card {
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-header {
  border-bottom: 3px solid var(--primary-color);
}

.cta-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-top: 3px solid var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
}

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

footer a:hover {
  color: var(--primary-color) !important;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(33, 37, 41, 0.95);
  color: white;
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  display: none;
}

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

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.cookie-consent-content a {
  color: var(--primary-color);
  text-decoration: underline;
}

.cookie-consent-buttons {
  display: flex;
  gap: 0.5rem;
}

.alert {
  border-radius: 0.5rem;
}

.accordion .card {
  border-radius: 0;
  margin-bottom: 0;
}

.accordion .card:first-child {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.accordion .card:last-child {
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.accordion .btn-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
}

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

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

  .hero-content p {
    font-size: 1rem;
  }

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

  .cookie-consent-buttons {
    justify-content: center;
  }

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

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