:root {
  --smoky-blue: #607d8b;
  --dark-smoky: #455a64;
  --light-smoky: #90a4ae;
  --text-primary: #212121;
  --text-secondary: #757575;
  --bg-white: #ffffff;
  --bg-light: #f5f5f5;
  --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;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-white);
}

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

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--smoky-blue);
}

main {
  margin-top: 80px;
}

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

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

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-top: 2rem;
}

.section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border-color);
}

.section:last-of-type {
  border-bottom: none;
}

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

.section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark-smoky);
  font-weight: 500;
}

.section p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

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

.section li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.content-with-image {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.content-with-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.content-with-image.image-left {
  grid-template-areas: 
    "image"
    "content";
}

.content-with-image.image-right {
  grid-template-areas: 
    "image"
    "content";
}

.content-with-image.image-left img {
  grid-area: image;
}

.content-with-image.image-left .text-content {
  grid-area: content;
}

.content-with-image.image-right img {
  grid-area: image;
}

.content-with-image.image-right .text-content {
  grid-area: content;
}

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

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

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

.faq-item p {
  color: var(--text-secondary);
}

.cta-section {
  background-color: var(--bg-light);
  padding: 3rem 0;
  text-align: center;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--smoky-blue);
  color: var(--bg-white);
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.cta-button:hover {
  background-color: var(--dark-smoky);
}

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

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--smoky-blue);
}

.btn-submit {
  padding: 0.75rem 2rem;
  background-color: var(--smoky-blue);
  color: var(--bg-white);
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

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

.footer {
  background-color: var(--bg-light);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.footer p,
.footer a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}

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

.footer a:hover {
  color: var(--smoky-blue);
}

.footer-links {
  list-style: none;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

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

.disclaimer-box p {
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-primary);
  color: var(--bg-white);
  padding: 1rem;
  z-index: 9999;
  display: none;
}

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

.cookie-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--bg-white);
}

.cookie-banner button {
  padding: 0.5rem 1.5rem;
  background-color: var(--smoky-blue);
  color: var(--bg-white);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.875rem;
}

.cookie-banner button:hover {
  background-color: var(--light-smoky);
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }

  .section h2 {
    font-size: 2.5rem;
  }

  .content-with-image {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .content-with-image.image-left {
    grid-template-areas: "image content";
  }

  .content-with-image.image-right {
    grid-template-areas: "content image";
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

@media (min-width: 992px) {
  .hero h1 {
    font-size: 3.5rem;
  }
}
