:root {
  --slate-gray: #708090;
  --slate-gray-dark: #5a6a7a;
  --slate-gray-light: #9ba8b5;
  --text-primary: #333333;
  --text-secondary: #666666;
  --bg-light: #f8f9fa;
  --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(--text-primary);
  line-height: 1.6;
  font-size: 16px;
}

header {
  background-color: var(--white);
  border-bottom: 1px solid #e0e0e0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--slate-gray);
  text-decoration: none;
}

.logo:hover {
  color: var(--slate-gray-dark);
  text-decoration: none;
}

main {
  margin-top: 80px;
}

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

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--slate-gray);
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

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

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.section {
  padding: 3rem 0;
}

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

.hero {
  padding: 4rem 0 3rem;
  background-color: var(--bg-light);
}

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

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

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

.btn-primary {
  background-color: var(--slate-gray);
  border-color: var(--slate-gray);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.btn-primary:hover {
  background-color: var(--slate-gray-dark);
  border-color: var(--slate-gray-dark);
}

.disclaimer-box {
  background-color: #f0f0f0;
  border-left: 4px solid var(--slate-gray);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

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

.faq-question {
  font-weight: 600;
  color: var(--slate-gray);
  margin-bottom: 0.5rem;
}

footer {
  background-color: #2c3e50;
  color: #ffffff;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

footer a {
  color: #ffffff;
  text-decoration: none;
}

footer a:hover {
  color: var(--slate-gray-light);
  text-decoration: underline;
}

.footer-message {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.contact-form {
  max-width: 600px;
}

.contact-info {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 4px;
  margin-bottom: 2rem;
}

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

.cookie-banner.hidden {
  display: none;
}

.divider {
  height: 1px;
  background-color: #e0e0e0;
  margin: 2rem 0;
}

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