:root {
  --lavender-pale: #E6E6FA;
  --lavender-light: #F5F5FF;
  --lavender-accent: #D8BFD8;
  --text-dark: #2C2C2C;
  --text-medium: #555555;
  --bg-light: #FAFAFA;
  --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);
  background-color: var(--bg-light);
  line-height: 1.7;
}

.navbar {
  background: linear-gradient(135deg, var(--white) 0%, var(--lavender-light) 100%);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.navbar-brand:hover {
  color: var(--text-dark);
}

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

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

.hero-section {
  background: linear-gradient(135deg, var(--lavender-light) 0%, var(--white) 100%);
  padding: 4rem 0;
  margin-bottom: 3rem;
}

.hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.125rem;
  color: var(--text-medium);
  line-height: 1.8;
}

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

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--lavender-accent);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.content-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.content-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.info-box {
  background: var(--lavender-light);
  border-left: 4px solid var(--lavender-accent);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.info-box h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.info-box p {
  color: var(--text-medium);
  margin-bottom: 0.5rem;
}

.disclaimer-box {
  background: linear-gradient(135deg, var(--lavender-pale) 0%, var(--lavender-light) 100%);
  border-radius: 12px;
  padding: 2rem;
  margin: 3rem 0;
  border: 2px solid var(--lavender-accent);
}

.disclaimer-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--white) 0%, var(--lavender-light) 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 3rem 0;
}

.cta-button {
  display: inline-block;
  background: var(--lavender-accent);
  color: var(--text-dark);
  padding: 1rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--lavender-accent);
}

.cta-button:hover {
  background: var(--white);
  color: var(--text-dark);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.table-responsive {
  margin: 2rem 0;
}

table {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
}

table thead {
  background: var(--lavender-pale);
}

table th {
  font-weight: 600;
  color: var(--text-dark);
  padding: 1rem;
}

table td {
  padding: 1rem;
  color: var(--text-medium);
}

.footer {
  background: linear-gradient(135deg, var(--text-dark) 0%, #1a1a1a 100%);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer h5 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--lavender-pale);
}

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

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

.footer-link {
  display: block;
  margin-bottom: 0.5rem;
}

.footer-disclaimer {
  background: rgba(0,0,0,0.2);
  padding: 1.5rem 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
}

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

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

.cookie-text {
  flex: 1;
  color: var(--text-medium);
  font-size: 0.95rem;
}

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

.cookie-accept {
  background: var(--lavender-accent);
  color: var(--text-dark);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept:hover {
  background: var(--lavender-pale);
  transform: translateY(-2px);
}

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

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

  .hero-image {
    height: 250px;
  }

  .content-image {
    height: 200px;
  }

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

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-accept {
    width: 100%;
  }
}

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

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

  .content-card {
    padding: 1.5rem;
  }
}
