:root {
  --slate-green: #5f7367;
  --slate-green-dark: #4a5c52;
  --slate-green-light: #7a8f82;
  --text-primary: #2c2c2c;
  --text-secondary: #666666;
  --background: #ffffff;
  --background-light: #f8f9f8;
  --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-primary);
  line-height: 1.6;
  background: var(--background);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--slate-green);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.main-content {
  margin-top: 80px;
}

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

.hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 4px;
}

.content-section {
  padding: 3rem 0;
}

.section-divider {
  border: 0;
  border-top: 1px solid var(--border-color);
  margin: 3rem 0;
}

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

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

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

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

.text-column {
  max-width: 100%;
}

.image-wrapper {
  margin: 2rem 0;
}

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

.two-column-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .two-column-layout {
    grid-template-columns: 1fr 1fr;
  }
  
  .image-left {
    order: -1;
  }
  
  .image-right {
    order: 1;
  }
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-item {
  padding: 1.5rem;
  background: var(--background-light);
  border-radius: 4px;
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1rem;
}

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

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

.faq-question {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.faq-answer {
  color: var(--text-secondary);
  line-height: 1.8;
}

.disclaimer-box {
  background: var(--background-light);
  padding: 2rem;
  border-left: 4px solid var(--slate-green);
  margin: 2rem 0;
}

.cta-box {
  background: var(--background-light);
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 4px;
  margin: 3rem 0;
}

.btn-primary {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--slate-green);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--slate-green-dark);
  color: white;
  text-decoration: none;
}

footer {
  background: var(--text-primary);
  color: white;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

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

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-section h3 {
  color: var(--slate-green-light);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: #cccccc;
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-section a {
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--slate-green-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #444;
  color: #999;
  font-size: 0.875rem;
}

.educational-notice {
  background: var(--slate-green-light);
  color: white;
  padding: 0.75rem 0;
  text-align: center;
  font-size: 0.9rem;
}

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

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

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .cookie-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.cookie-text {
  flex: 1;
  font-size: 0.9rem;
}

.btn-accept {
  background: var(--slate-green);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
}

.btn-accept:hover {
  background: var(--slate-green-dark);
}

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

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

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

.form-control:focus {
  outline: none;
  border-color: var(--slate-green);
}

.form-disclaimer {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 1rem;
}

ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

ul li, ol li {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  line-height: 1.8;
}
