* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --brand-red: #c41e3a;
  --dark-gray: #2c3e50;
  --light-gray: #ecf0f1;
  --white: #ffffff;
  --text-dark: #34495e;
}

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

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

a:hover {
  color: #a01830;
  text-decoration: none;
}

.brand-red {
  color: var(--brand-red);
}

.brand-red-text {
  color: var(--brand-red);
}

.btn-danger {
  background-color: var(--brand-red);
  border-color: var(--brand-red);
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-danger:hover {
  background-color: #a01830;
  border-color: #a01830;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.btn-outline-danger {
  color: var(--brand-red);
  border-color: var(--brand-red);
}

.btn-outline-danger:hover {
  background-color: var(--brand-red);
  border-color: var(--brand-red);
}

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-size: 1.5rem;
  color: var(--text-dark) !important;
}

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

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

.hero-section {
  background: linear-gradient(135deg, #f5f7fa 0%, var(--light-gray) 100%);
  padding: 80px 0;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero-section h1 {
  color: var(--dark-gray);
  line-height: 1.3;
}

.hero-section img {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.page-header {
  padding: 60px 0 40px;
}

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

.card {
  transition: all 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15) !important;
}

.card-title {
  color: var(--dark-gray);
}

.cta-section {
  background: linear-gradient(135deg, var(--brand-red) 0%, #8b1428 100%);
  color: white;
}

.cta-section h2,
.cta-section p {
  color: white;
}

.stars {
  color: var(--brand-red);
  font-size: 18px;
  letter-spacing: 2px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark-gray);
  color: white;
  padding: 20px;
  display: none;
  z-index: 1000;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

footer {
  margin-top: 60px;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0;
    min-height: auto;
  }

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

  .nav-link {
    margin-left: 0;
    padding: 0.5rem 0;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner p {
    margin-bottom: 10px;
  }

  .display-4 {
    font-size: 2rem;
  }

  .page-header {
    padding: 30px 0 20px;
  }

  section {
    padding: 3rem 0 !important;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }

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

  .btn {
    font-size: 14px;
  }

  .display-4 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }
}
