:root {
  --primary-red: #8b1a1a;
  --dark-red: #6b0f0f;
  --text-dark: #2c2c2c;
  --text-gray: #555555;
  --bg-light: #f8f9fa;
  --white: #ffffff;
}

* {
  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: var(--white);
}

.navbar {
  background: var(--white) !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-red) !important;
}

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

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

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

.btn-primary:hover {
  background-color: var(--dark-red);
  border-color: var(--dark-red);
  transform: translateY(-2px);
}

.hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  color: var(--text-gray);
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s;
  height: 100%;
}

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

.card-img-top {
  border-radius: 8px 8px 0 0;
  height: 200px;
  object-fit: cover;
}

.article-card {
  margin-bottom: 2rem;
}

.article-title {
  color: var(--text-dark);
  font-weight: 600;
  margin-top: 1rem;
}

.article-title:hover {
  color: var(--primary-red);
  text-decoration: none;
}

.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

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

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

.footer h5 {
  color: var(--primary-red);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: var(--white);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

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

.disclaimer-box {
  background: #fff3cd;
  border-left: 4px solid var(--primary-red);
  padding: 1.5rem;
  margin: 2rem 0;
}

.testimonial {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.form-control:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 0.2rem rgba(139, 26, 26, 0.25);
}

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

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

  .section-title {
    font-size: 1.75rem;
  }
}
