:root {
  --primary: #f7b500;
  --secondary: #333333;
  --light: #f8f9fa;
  --dark: #212529;
  --white: #ffffff;
  --text: #495057;
  --border: #dee2e6;
}
* {
  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);
  line-height: 1.6;
  overflow-x: hidden;
}
.navbar {
  padding: 1rem 0;
}
.navbar-brand {
  font-size: 1.5rem;
  color: var(--secondary);
}
.navbar-brand:hover {
  color: var(--primary);
}
.nav-link {
  color: var(--secondary);
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}
.hero-section {
  position: relative;
  padding-top: 70px;
}
.hero-image {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
}
.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--dark);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: #e5a500;
  border-color: #e5a500;
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(247, 181, 0, 0.3);
}
.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
}
.btn-outline-primary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--dark);
}
.btn-light {
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
}
.btn-outline-light {
  border-radius: 50px;
  padding: 0.75rem 2rem;
}
.icon-box {
  color: var(--primary);
}
.icon-box-large {
  color: var(--primary);
}
.icon-circle {
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  color: var(--dark);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}
.step-circle {
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.bg-primary {
  background-color: var(--primary);
}
.text-warning {
  color: var(--primary);
}
.shadow-sm {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.shadow {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark);
  color: var(--white);
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}
.cookie-banner a {
  color: var(--primary);
  text-decoration: underline;
}
.cookie-banner.hidden {
  display: none;
}
footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}
footer a:hover {
  color: var(--primary);
}
@media (max-width: 768px) {
  .hero-image {
    height: 400px;
  }
  .display-4 {
    font-size: 2rem;
  }
  .lead {
    font-size: 1rem;
  }
}
