:root {
  --accent-color: #fffacd;
  --primary-text: #2c3e50;
  --secondary-text: #555;
  --border-color: #e0e0e0;
  --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(--primary-text);
  line-height: 1.6;
  background: var(--white);
}

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

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-text);
}

.navbar-brand:hover {
  color: var(--primary-text);
  opacity: 0.8;
}

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

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

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

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

.hero-section p {
  font-size: 1.125rem;
  color: var(--secondary-text);
  margin-bottom: 2rem;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

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

.content-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-text);
}

.content-section p {
  font-size: 1rem;
  color: var(--secondary-text);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.accent-box {
  background: var(--accent-color);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

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

.disclaimer-box h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

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

.faq-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

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

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

.cta-link {
  color: var(--primary-text);
  text-decoration: underline;
  font-weight: 500;
  margin: 0 0.5rem;
}

.cta-link:hover {
  opacity: 0.8;
}

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

footer h5 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

footer p, footer a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

footer a {
  text-decoration: none;
  display: block;
}

footer a:hover {
  color: var(--white);
}

.footer-disclaimer {
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 0;
  margin-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
}

.btn-submit {
  background: var(--accent-color);
  color: var(--primary-text);
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.btn-submit:hover {
  opacity: 0.8;
}

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

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

.cookie-banner p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.cookie-btn {
  background: var(--accent-color);
  color: var(--primary-text);
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  margin-right: 0.5rem;
}

.cookie-btn:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 1.875rem;
  }
  
  .content-section h2 {
    font-size: 1.5rem;
  }
  
  .navbar-brand {
    font-size: 1.25rem;
  }
}
