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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Oxygen-Sans', Ubuntu, Cantarell, sans-serif;
  color: #2c3e50;
  background-color: #f8f9f7;
  line-height: 1.68;
  font-size: 16px;
}

a {
  color: #2C5E50;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #1d3a2f;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 16px;
  color: #1a2f2e;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 44px;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
  margin-top: 32px;
}

p {
  margin-bottom: 16px;
  max-width: 700px;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-bottom: 1px solid #e8eae5;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2C5E50;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 32px;
  height: 32px;
  border-radius: 5px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  align-items: center;
}

nav a {
  font-weight: 500;
  color: #2c3e50;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #2C5E50;
}

body {
  padding-top: 70px;
}

/* Main Content */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px;
}

section {
  margin-bottom: 44px;
  padding: 44px 0;
}

.hero {
  background: linear-gradient(135deg, #f8f9f7 0%, #f0f2ed 100%);
  margin-left: -32px;
  margin-right: -32px;
  padding: 64px 32px;
  margin-bottom: 44px;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.hero-text h1 {
  color: #1a2f2e;
  margin-bottom: 24px;
}

.hero-text p {
  font-size: 1.1rem;
  color: #445566;
  margin-bottom: 20px;
}

.hero-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Two Column Layout */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.two-column.img-right {
  grid-template-columns: 1fr 1fr;
}

.two-column.img-left {
  grid-template-columns: 1fr 1fr;
}

.two-column.img-left .img-col {
  order: -1;
}

.img-col img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.text-col {
  padding: 12px 0;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 32px;
}

.product-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 5px;
  border: 1px solid #e8eae5;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.product-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: #2C5E50;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 16px;
}

.product-card h3 {
  font-size: 1.3rem;
  margin-top: 0;
  margin-bottom: 12px;
  color: #1a2f2e;
}

.product-card p {
  font-size: 0.95rem;
  color: #556677;
  max-width: none;
}

/* CTA Buttons */
.cta-btn {
  display: inline-block;
  padding: 14px 28px;
  background-color: #2C5E50;
  color: #ffffff;
  border-radius: 5px;
  font-weight: 600;
  margin-top: 12px;
  transition: all 0.3s ease;
  border: 2px solid #2C5E50;
}

.cta-btn:hover {
  background-color: #1d3a2f;
  border-color: #1d3a2f;
  color: #ffffff;
}

.cta-secondary {
  background-color: transparent;
  color: #2C5E50;
  border: 2px solid #2C5E50;
}

.cta-secondary:hover {
  background-color: #2C5E50;
  color: #ffffff;
}

/* Footer */
footer {
  background-color: #1a2f2e;
  color: #b8c5bd;
  padding: 44px 32px;
  margin-top: 64px;
  border-top: 1px solid #0f1d1c;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  margin-bottom: 44px;
}

.footer-section h4 {
  color: #e8f0ed;
  font-size: 1.1rem;
  margin-bottom: 16px;
  margin-top: 0;
}

.footer-section p {
  font-size: 0.95rem;
  max-width: none;
  margin-bottom: 12px;
  color: #b8c5bd;
}

.footer-section a {
  color: #b8c5bd;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #e8f0ed;
}

.footer-legal {
  border-top: 1px solid #0f1d1c;
  padding-top: 24px;
  text-align: center;
  color: #7a8b86;
  font-size: 0.9rem;
}

.footer-legal a {
  margin: 0 12px;
}

.contact-info {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 1px solid #e8eae5;
  padding: 20px 32px;
  z-index: 999;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  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: 24px;
}

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  color: #445566;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.cookie-accept {
  background-color: #2C5E50;
  color: #ffffff;
}

.cookie-accept:hover {
  background-color: #1d3a2f;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  background: #ffffff;
  padding: 32px;
  border-radius: 5px;
  border: 1px solid #e8eae5;
  margin-top: 24px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #1a2f2e;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #d8dcd7;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  color: #2c3e50;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2C5E50;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  background-color: #2C5E50;
  color: #ffffff;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.form-submit:hover {
  background-color: #1d3a2f;
}

/* Responsive */
@media (max-width: 768px) {
  .header-content {
    padding: 12px 16px;
  }

  nav ul {
    gap: 16px;
    font-size: 0.9rem;
  }

  main {
    padding: 16px;
  }

  section {
    padding: 24px 0;
    margin-bottom: 32px;
  }

  .hero {
    padding: 32px 16px;
    margin-left: -16px;
    margin-right: -16px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
    margin-top: 24px;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }

  .contact-form {
    padding: 20px;
  }

  body {
    padding-top: 60px;
  }

  h3 {
    margin-top: 20px;
  }

  .hero-img {
    max-width: 100%;
  }

  .img-col img {
    max-width: 100%;
  }
}

/* Disclaimer Box */
.disclaimer-box {
  background-color: #f0f8f6;
  border-left: 4px solid #2C5E50;
  padding: 20px;
  border-radius: 5px;
  margin: 24px 0;
  font-size: 0.95rem;
  color: #445566;
}

/* Table Styles */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background-color: #ffffff;
  border: 1px solid #e8eae5;
  border-radius: 5px;
  overflow: hidden;
}

table th {
  background-color: #f0f2ed;
  color: #1a2f2e;
  padding: 12px;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid #d8dcd7;
}

table td {
  padding: 12px;
  border-bottom: 1px solid #e8eae5;
}

table tr:last-child td {
  border-bottom: none;
}

/* Message Box */
.info-box {
  background-color: #f8f9f7;
  border: 1px solid #d8dcd7;
  padding: 20px;
  border-radius: 5px;
  margin: 20px 0;
  font-size: 0.95rem;
  color: #556677;
}

/* Educational Label */
.educational-label {
  display: inline-block;
  background-color: #2C5E50;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}
