:root {
  --primary-color: #8FA888;
  --text-dark: #2C2C2C;
  --text-light: #666666;
  --bg-light: #F9F9F9;
  --white: #FFFFFF;
  --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-dark);
  line-height: 1.6;
  font-size: 16px;
}

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

.header .navbar-brand {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
}

.header .navbar-brand:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.header .btn-home {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
}

.header .btn-home:hover {
  background: #7A9173;
  text-decoration: none;
  color: var(--white);
}

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

.section {
  padding: 60px 0;
}

.section:nth-child(even) {
  background: var(--bg-light);
}

.hero-section {
  background: var(--bg-light);
  padding: 80px 0;
}

.hero-section h1 {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

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

.hero-section img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

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

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

p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 15px;
}

.content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

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

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

.product-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  height: 100%;
}

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

.product-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 14px;
  margin-bottom: 0;
}

.btn-read-more {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin-top: 20px;
}

.btn-read-more:hover {
  background: #7A9173;
  text-decoration: none;
  color: var(--white);
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.faq-item p {
  margin-bottom: 0;
  font-size: 15px;
}

.cta-section {
  background: var(--primary-color);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 15px;
}

.cta-section p {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 25px;
}

.cta-section .btn-read-more {
  background: var(--white);
  color: var(--primary-color);
}

.cta-section .btn-read-more:hover {
  background: var(--bg-light);
  color: var(--primary-color);
}

.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 40px 0 20px;
}

.footer h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 15px;
}

.footer p {
  color: #CCCCCC;
  font-size: 14px;
  margin-bottom: 8px;
}

.footer a {
  color: #CCCCCC;
  text-decoration: none;
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
}

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

.footer-bottom {
  border-top: 1px solid #444444;
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: #AAAAAA;
  font-size: 13px;
  margin-bottom: 5px;
}

.email-form {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 30px;
  max-width: 500px;
  margin: 30px auto;
}

.email-form h3 {
  margin-bottom: 15px;
  text-align: center;
}

.email-form p {
  text-align: center;
  margin-bottom: 20px;
  font-size: 14px;
}

.email-form .form-control {
  margin-bottom: 15px;
}

.email-form button {
  width: 100%;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 12px;
  border-radius: 4px;
  font-size: 16px;
}

.email-form button:hover {
  background: #7A9173;
}

.disclaimer-box {
  background: #FFF8E1;
  border-left: 4px solid var(--primary-color);
  padding: 20px;
  margin: 30px 0;
  border-radius: 4px;
}

.disclaimer-box p {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--text-dark);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: var(--white);
  padding: 20px;
  z-index: 9999;
  display: none;
}

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

.cookie-banner p {
  color: var(--white);
  margin-bottom: 0;
  font-size: 14px;
}

.cookie-banner button {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  margin-left: 15px;
}

.cookie-banner button:hover {
  background: #7A9173;
}

.policy-content {
  padding: 60px 0;
}

.policy-content h1 {
  margin-bottom: 30px;
}

.policy-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 28px;
}

.policy-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}

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

.policy-content li {
  color: var(--text-light);
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 20px;
  }

  .content-image-left,
  .content-image-right {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .section {
    padding: 40px 0;
  }

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