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

:root {
  --primary-color: #2A5648;
  --light-bg: #F9F9F7;
  --border-light: #E8E8E5;
  --text-dark: #2C2C2C;
  --text-light: #666666;
  --radius: 8px;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Noto Sans', sans-serif;
  color: var(--text-dark);
  background-color: var(--light-bg);
  line-height: 1.78;
  font-size: 16px;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: opacity 0.4s ease-in-out;
}

a:hover {
  opacity: 0.8;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: white;
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.navbar {
  padding: 0.75rem 0;
}

.navbar-brand {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 18px;
  letter-spacing: 0.5px;
}

.navbar-brand:hover {
  color: var(--primary-color);
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.4s ease-in-out;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

body {
  padding-top: 70px;
}

.hero-block {
  background: linear-gradient(135deg, var(--light-bg) 0%, white 100%);
  padding: 60px 0;
}

.hero-block h1 {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-block p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 30px;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-light);
}

h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 30px;
  line-height: 1.3;
}

h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.product-card {
  background: white;
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  transition: all 0.4s ease-in-out;
  margin-bottom: 30px;
}

.product-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.product-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
}

.product-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

.section-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  margin: 30px 0;
}

.left-image {
  float: left;
  margin-right: 30px;
  margin-bottom: 20px;
  max-width: 45%;
}

.right-image {
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
  max-width: 45%;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.cta-link {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: white;
  border-radius: var(--radius);
  transition: all 0.4s ease-in-out;
  font-weight: 500;
  margin-top: 15px;
}

.cta-link:hover {
  background-color: #1f4033;
  color: white;
  transform: translateX(4px);
}

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

footer h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

footer p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
  opacity: 0.9;
}

footer a {
  color: white;
  opacity: 0.9;
  transition: opacity 0.4s ease-in-out;
}

footer a:hover {
  opacity: 1;
}

.footer-section {
  margin-bottom: 40px;
}

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

.footer-links li {
  margin-bottom: 8px;
}

.footer-disclaimer {
  font-size: 12px;
  opacity: 0.8;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 30px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  border-top: 1px solid var(--border-light);
  padding: 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
  z-index: 999;
  display: none;
}

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

.cookie-banner p {
  margin-bottom: 15px;
  font-size: 14px;
  color: var(--text-dark);
}

.cookie-banner button {
  padding: 8px 20px;
  margin-right: 10px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 500;
  transition: all 0.4s ease-in-out;
  font-size: 14px;
}

.cookie-accept {
  background-color: var(--primary-color);
  color: white;
}

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

.cookie-decline {
  background-color: var(--light-bg);
  color: var(--primary-color);
  border: 1px solid var(--border-light);
}

.cookie-decline:hover {
  background-color: var(--border-light);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

@media (max-width: 768px) {
  .left-image,
  .right-image {
    float: none;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 20px;
  }

  .hero-block h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .navbar-brand {
    font-size: 16px;
  }

  body {
    padding-top: 60px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }

  .hero-block {
    padding: 40px 0;
  }

  .hero-block h1 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .hero-block p {
    font-size: 16px;
  }

  h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  section {
    padding: 40px 0;
  }

  .product-card {
    padding: 20px;
    margin-bottom: 20px;
  }

  footer {
    padding: 30px 0 20px;
  }

  .footer-section {
    margin-bottom: 25px;
  }

  .cookie-banner {
    padding: 15px;
  }

  .cookie-banner button {
    display: block;
    width: 100%;
    margin-bottom: 8px;
    margin-right: 0;
  }
}

.disclaimer-notice {
  background-color: var(--light-bg);
  border-left: 4px solid var(--primary-color);
  padding: 20px;
  border-radius: var(--radius);
  margin: 30px 0;
  font-size: 14px;
  color: var(--text-dark);
}

.contact-form {
  background: white;
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.4s ease-in-out;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(42, 86, 72, 0.1);
}

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

.btn-submit {
  padding: 10px 30px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 500;
  transition: all 0.4s ease-in-out;
}

.btn-submit:hover {
  background-color: #1f4033;
  transform: translateX(4px);
}

.policy-content {
  color: var(--text-light);
  line-height: 1.8;
}

.policy-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.policy-content ol,
.policy-content ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.policy-content li {
  margin-bottom: 8px;
}

.educational-note {
  background-color: rgba(42, 86, 72, 0.05);
  border: 1px solid var(--primary-color);
  border-radius: var(--radius);
  padding: 20px;
  margin: 30px 0;
}

.educational-note strong {
  color: var(--primary-color);
}
