:root {
  --primary-color: #475569;
  --text-color: #334155;
  --bg-light: #f8fafc;
  --border-color: #e2e8f0;
}

* {
  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-color);
  line-height: 1.6;
  font-size: 16px;
}

.navbar {
  background-color: white;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

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

.navbar-brand:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.nav-link {
  color: var(--text-color);
  padding: 0.5rem 1rem;
  transition: color 0.2s;
}

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

h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.4;
}

p {
  margin-bottom: 1rem;
}

section {
  padding: 4rem 0;
}

.section-alt {
  background-color: var(--bg-light);
}

.content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.content-image-left {
  float: left;
  margin-right: 2rem;
  margin-bottom: 1rem;
  max-width: 45%;
}

.content-image-right {
  float: right;
  margin-left: 2rem;
  margin-bottom: 1rem;
  max-width: 45%;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-size: 1rem;
  transition: background-color 0.2s;
}

.btn-primary:hover {
  background-color: #334155;
  border-color: #334155;
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  transition: all 0.2s;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

footer {
  background-color: #1e293b;
  color: white;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

footer a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover {
  color: white;
}

footer h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: white;
}

.disclaimer-box {
  background-color: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 1.25rem;
  margin: 2rem 0;
  border-radius: 4px;
}

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

.disclaimer-box p:last-child {
  margin-bottom: 0;
}

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

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(71, 85, 105, 0.25);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1e293b;
  color: white;
  padding: 1.5rem;
  z-index: 9999;
  border-top: 2px solid var(--primary-color);
}

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

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

.faq-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .content-image-left,
  .content-image-right {
    float: none;
    margin: 0 0 1.5rem 0;
    max-width: 100%;
  }
  
  section {
    padding: 3rem 0;
  }
}
