:root {
  --primary-lavender: #b8b4d0;
  --light-lavender: #e8e6f0;
  --lavender-gray: #c9c5d9;
  --text-dark: #2c2942;
  --text-medium: #5a5668;
  --text-light: #8a8696;
  --bg-white: #ffffff;
  --bg-light: #f9f8fb;
  --border-color: #e0dde8;
}

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

.navbar {
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--light-lavender) 100%);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

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

.navbar-brand:hover {
  color: var(--primary-lavender);
}

.nav-link {
  color: var(--text-medium);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

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

.hero-section {
  background: linear-gradient(135deg, var(--light-lavender) 0%, var(--bg-white) 100%);
  padding: 4rem 0;
  border-radius: 0 0 2rem 2rem;
}

.hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(184, 180, 208, 0.2);
}

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

.section-block:nth-child(even) {
  background-color: var(--bg-light);
}

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

.section-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-medium);
  margin-bottom: 1rem;
}

.section-text {
  font-size: 1.1rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.content-image {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 1rem;
  margin: 1.5rem 0;
  box-shadow: 0 5px 20px rgba(184, 180, 208, 0.15);
}

.image-row {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
}

.image-row .content-image {
  flex: 1;
  margin: 0;
}

.context-disclaimer {
  background: linear-gradient(135deg, var(--light-lavender) 0%, var(--lavender-gray) 100%);
  padding: 3rem;
  border-radius: 1rem;
  margin: 3rem 0;
  border-left: 4px solid var(--primary-lavender);
}

.context-disclaimer h2 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.context-disclaimer p {
  color: var(--text-medium);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

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

.cta-title {
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.cta-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-custom {
  background: linear-gradient(135deg, var(--primary-lavender) 0%, var(--lavender-gray) 100%);
  color: var(--bg-white);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(184, 180, 208, 0.3);
  color: var(--bg-white);
  text-decoration: none;
}

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

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

.footer p, .footer a {
  color: var(--bg-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

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

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

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid var(--text-medium);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  color: var(--bg-light);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--text-medium) 100%);
  color: var(--bg-white);
  padding: 1.5rem;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
  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;
  min-width: 250px;
  font-size: 0.95rem;
}

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

.btn-cookie {
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-accept {
  background-color: var(--primary-lavender);
  color: var(--bg-white);
}

.btn-accept:hover {
  background-color: var(--lavender-gray);
}

.form-control:focus {
  border-color: var(--primary-lavender);
  box-shadow: 0 0 0 0.2rem rgba(184, 180, 208, 0.25);
}

.page-header {
  background: linear-gradient(135deg, var(--light-lavender) 0%, var(--bg-white) 100%);
  padding: 3rem 0;
  margin-bottom: 3rem;
  border-radius: 0 0 1rem 1rem;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section h2 {
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.policy-section h3 {
  font-size: 1.35rem;
  color: var(--text-medium);
  margin-bottom: 0.75rem;
}

.policy-section p, .policy-section ul {
  color: var(--text-medium);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-section ul {
  padding-left: 2rem;
}

@media (max-width: 768px) {
  .hero-image {
    height: 250px;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .image-row {
    flex-direction: column;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}
