:root {
  --primary-color: #6FA9A1;
  --text-color: #333;
  --bg-light: #f8f9fa;
  --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(--text-color);
  line-height: 1.6;
  background: #fff;
}
h1, h2, h3 {
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #222;
}
h1 {
  font-size: 2.5rem;
  font-weight: 600;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
}
h3 {
  font-size: 1.5rem;
  font-weight: 500;
}
p {
  margin-bottom: 1rem;
  line-height: 1.8;
}
.header {
  background: #fff;
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
}
.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.nav a:hover {
  color: var(--primary-color);
}
.hero-section {
  margin-top: 70px;
  padding: 4rem 0;
  background: var(--bg-light);
}
.hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin-bottom: 2rem;
}
section {
  padding: 3rem 0;
}
.section-alt {
  background: var(--bg-light);
}
.section-divider {
  border-top: 1px solid var(--border-color);
  margin: 3rem 0;
}
.content-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 1.5rem 0;
}
.image-left {
  float: left;
  margin: 0 2rem 1rem 0;
}
.image-right {
  float: right;
  margin: 0 0 1rem 2rem;
}
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}
.blog-card {
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  background: #fff;
  text-decoration: none;
  color: var(--text-color);
  transition: box-shadow 0.2s;
}
.blog-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 1rem;
}
.blog-card h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}
.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 {
  color: var(--primary-color);
}
.cta-section {
  background: var(--primary-color);
  color: #fff;
  padding: 3rem;
  text-align: center;
  margin: 3rem 0;
}
.cta-section h2 {
  color: #fff;
}
.btn-primary {
  display: inline-block;
  background: #fff;
  color: var(--primary-color);
  padding: 0.75rem 2rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: opacity 0.2s;
}
.btn-primary:hover {
  opacity: 0.9;
}
.contact-form {
  max-width: 600px;
  margin: 2rem 0;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  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;
}
.form-group textarea {
  min-height: 150px;
  resize: vertical;
}
.btn-submit {
  background: var(--primary-color);
  color: #fff;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-submit:hover {
  opacity: 0.9;
}
.footer {
  background: #222;
  color: #fff;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-section h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.footer-section ul {
  list-style: none;
}
.footer-section ul li {
  margin-bottom: 0.5rem;
}
.footer-section a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-section a:hover {
  color: var(--primary-color);
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #444;
  font-size: 0.9rem;
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 2px solid var(--primary-color);
  padding: 1.5rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 1001;
  display: none;
}
.cookie-banner.show {
  display: block;
}
.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.cookie-text {
  flex: 1;
}
.cookie-actions button {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
.cookie-actions button:hover {
  opacity: 0.9;
}
.disclaimer-box {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 1.5rem;
  margin: 2rem 0;
}
.disclaimer-box h3 {
  color: #856404;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  .nav {
    gap: 1rem;
  }
  .hero-image {
    height: 250px;
  }
  .content-image {
    max-width: 100%;
  }
  .image-left,
  .image-right {
    float: none;
    margin: 1rem 0;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
}
