:root {
  --primary-color: #f5e1e5;
  --text-dark: #2c2c2c;
  --text-light: #6b6b6b;
  --bg-light: #fdfcfc;
  --border-light: #ede8e9;
}

* {
  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;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  margin-top: 3rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.2rem;
  color: var(--text-light);
}

a {
  color: #a77f87;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #8d6a72;
  text-decoration: underline;
}

.navbar {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 1rem 0;
}

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

.navbar-nav .nav-link {
  color: var(--text-light) !important;
  padding: 0.5rem 1rem !important;
  font-size: 0.95rem;
}

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

.hero-section {
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, #fdfcfc 0%, var(--primary-color) 100%);
}

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

.hero-section p.lead {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 700px;
}

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

.content-block {
  margin-bottom: 4rem;
}

.img-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
}

.img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.disclaimer-box {
  background: #fff9f0;
  border-left: 4px solid #d4a574;
  padding: 2rem;
  border-radius: 8px;
  margin: 3rem 0;
}

.disclaimer-box h2,
.disclaimer-box h3 {
  font-size: 1.3rem;
  color: #8b6f47;
  margin-top: 0;
}

.cta-box {
  background: white;
  border: 2px solid var(--border-light);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  margin: 3rem 0;
}

.cta-box h3 {
  margin-bottom: 1rem;
}

.faq-section {
  margin-top: 3rem;
}

.faq-item {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.faq-item h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.faq-item p {
  margin-bottom: 0;
}

.footer {
  background: #2c2c2c;
  color: #d4d4d4;
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

.footer h5 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer p,
.footer a {
  color: #b4b4b4;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer a:hover {
  color: white;
}

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

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

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #444;
  text-align: center;
  font-size: 0.85rem;
  color: #999;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 2px solid var(--border-light);
  padding: 1.5rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 9999;
  display: none;
}

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

.cookie-banner p {
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.btn-accept-cookies {
  background: var(--text-dark);
  color: white;
  border: none;
  padding: 0.7rem 2rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.btn-accept-cookies:hover {
  background: #1a1a1a;
}

.form-control {
  border: 2px solid var(--border-light);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-size: 1rem;
}

.form-control:focus {
  border-color: #d4a574;
  box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.15);
}

.btn-primary {
  background: var(--text-dark);
  border: none;
  padding: 0.8rem 2.5rem;
  border-radius: 8px;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #1a1a1a;
}

.educational-notice {
  background: #e8f4f8;
  border-left: 4px solid #5fa8c4;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .hero-section h1 {
    font-size: 2.2rem;
  }
  
  .content-section {
    padding: 2rem 0;
  }
  
  .content-block {
    margin-bottom: 2.5rem;
  }
}
