:root {
  --graphite: #4a4a4a;
  --dark-graphite: #2a2a2a;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --border-color: #e0e0e0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--dark-graphite);
  line-height: 1.6;
  font-size: 16px;
}

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

.logo-text {
  font-size: 24px;
  font-weight: 600;
  color: var(--graphite);
  text-decoration: none;
}

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

.hero-section {
  margin-top: 70px;
  padding: 80px 0;
  background-color: var(--light-bg);
}

.hero-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto 30px;
}

.hero-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--dark-graphite);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--graphite);
  margin-bottom: 15px;
}

.section {
  padding: 60px 0;
}

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

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-graphite);
  margin-bottom: 25px;
}

.section-subtitle {
  font-size: 24px;
  font-weight: 600;
  color: var(--graphite);
  margin-bottom: 20px;
  margin-top: 30px;
}

.section-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--dark-graphite);
  margin-bottom: 20px;
}

.content-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 20px 0;
  display: block;
}

.content-image-left {
  float: left;
  margin: 0 30px 20px 0;
  max-width: 400px;
}

.content-image-right {
  float: right;
  margin: 0 0 20px 30px;
  max-width: 400px;
}

.info-box {
  background-color: var(--white);
  border-left: 4px solid var(--graphite);
  padding: 25px;
  margin: 30px 0;
}

.info-box-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-graphite);
  margin-bottom: 15px;
}

.cta-link {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--graphite);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  margin-top: 15px;
  transition: background-color 0.2s;
}

.cta-link:hover {
  background-color: var(--dark-graphite);
  color: var(--white);
  text-decoration: none;
}

.faq-item {
  margin-bottom: 30px;
}

.faq-question {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-graphite);
  margin-bottom: 12px;
}

.faq-answer {
  font-size: 17px;
  line-height: 1.7;
  color: var(--graphite);
}

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

.form-group {
  margin-bottom: 20px;
}

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

.btn-submit {
  background-color: var(--graphite);
  color: var(--white);
  padding: 12px 32px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-submit:hover {
  background-color: var(--dark-graphite);
}

.footer {
  background-color: var(--dark-graphite);
  color: var(--white);
  padding: 50px 0 30px;
  margin-top: 60px;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-link {
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  opacity: 0.9;
}

.footer-link:hover {
  color: var(--white);
  opacity: 1;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark-graphite);
  color: var(--white);
  padding: 20px;
  z-index: 2000;
  display: none;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.btn-cookie {
  background-color: var(--white);
  color: var(--dark-graphite);
  padding: 10px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.policy-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark-graphite);
  margin-bottom: 30px;
  margin-top: 100px;
}

.policy-section {
  margin-bottom: 35px;
}

.policy-heading {
  font-size: 24px;
  font-weight: 600;
  color: var(--dark-graphite);
  margin-bottom: 15px;
}

.policy-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--graphite);
  margin-bottom: 15px;
}

.disclaimer-box {
  background-color: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 20px;
  margin: 30px 0;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .section-title {
    font-size: 26px;
  }
  
  .content-image-left,
  .content-image-right {
    float: none;
    margin: 20px auto;
    max-width: 100%;
    display: block;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}
