:root {
  --primary-color: #16a085;
  --primary-dark: #138d75;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --bg-light: #f8f9fa;
  --border-color: #dee2e6;
}

* {
  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: #ffffff;
}

header {
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

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

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

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

main {
  margin-top: 70px;
}

.hero-section {
  background: linear-gradient(135deg, #16a085 0%, #138d75 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

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

.hero-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  margin: 2rem auto 0;
  display: block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.content-section {
  padding: 60px 0;
}

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

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

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

.content-section p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.content-section ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.content-section li {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

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

.disclaimer-box {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-box h3 {
  color: #856404;
  margin-top: 0;
}

.disclaimer-box p {
  color: #856404;
  margin-bottom: 0.5rem;
}

.faq-item {
  margin-bottom: 2rem;
}

.faq-item h3 {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.faq-item p {
  font-size: 1.05rem;
  color: var(--text-dark);
}

.cta-section {
  background: var(--bg-light);
  padding: 60px 0;
  text-align: center;
}

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

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.btn-primary {
  background: var(--primary-color);
  border: none;
  padding: 12px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.email-form {
  max-width: 400px;
  margin: 0 auto;
}

.email-form input {
  border: 1px solid var(--border-color);
  padding: 12px;
  font-size: 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.email-form small {
  display: block;
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

footer {
  background: var(--text-dark);
  color: #ffffff;
  padding: 40px 0 20px;
}

.footer-links {
  margin-bottom: 2rem;
}

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

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

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

.footer-links a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-contact {
  margin-bottom: 2rem;
}

.footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-contact p {
  margin-bottom: 0.5rem;
  color: #ecf0f1;
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
  color: #95a5a6;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c3e50;
  color: #ffffff;
  padding: 1.5rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 999;
  display: none;
}

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

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

.cookie-banner button {
  background: var(--primary-color);
  border: none;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.cookie-banner button:hover {
  background: var(--primary-dark);
}

.policy-page {
  padding: 40px 0;
}

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

.policy-page h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.policy-page h3 {
  font-size: 1.35rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.policy-page p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.policy-page ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.policy-page li {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section p {
    font-size: 1.1rem;
  }
  
  .content-section h2 {
    font-size: 1.75rem;
  }
  
  .content-section h3 {
    font-size: 1.25rem;
  }
  
  .content-section p,
  .content-section li {
    font-size: 1rem;
  }
}
