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

html, body {
  width: 100%;
  height: 100%;
  background: #ffffff;
}

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

body {
  padding-top: 64px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 1.2rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  color: #4A704F;
}

h3 {
  font-size: 1.5rem;
  color: #4A704F;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

a {
  color: #4A704F;
  text-decoration: none;
  transition: color 0.35s ease-in-out, text-decoration 0.35s ease-in-out;
}

a:hover {
  color: #2d4630;
  text-decoration: underline;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  height: 64px;
}

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

.logo {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  font-weight: 600;
  color: #4A704F;
  text-decoration: none;
  transition: opacity 0.35s ease-in-out;
}

.logo img {
  width: 36px;
  height: 36px;
  margin-right: 10px;
  border-radius: 8px;
}

.logo:hover {
  opacity: 0.8;
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  color: #4A704F;
  font-size: 0.95rem;
  transition: color 0.35s ease-in-out;
}

nav a:hover {
  color: #2d4630;
  text-decoration: none;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.hero {
  padding: 4rem 0;
  text-align: center;
}

.hero img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  margin: 2rem 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.section {
  padding: 3rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.section:last-child {
  border-bottom: none;
  padding-bottom: 4rem;
}

.section-title {
  margin-bottom: 2rem;
  text-align: left;
}

.section img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin: 1.5rem 0;
}

.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  padding: 2rem;
  background: #f9faf8;
  border-radius: 8px;
  transition: box-shadow 0.35s ease-in-out, transform 0.35s ease-in-out;
}

.product-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.product-card h3 {
  margin-bottom: 1rem;
  color: #4A704F;
}

.product-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

footer {
  background: #f9faf8;
  border-top: 1px solid #e8e8e8;
  padding: 3rem 0;
  margin-top: 3rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: #4A704F;
  font-size: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.7rem;
}

.footer-section a {
  color: #666;
  font-size: 0.9rem;
  transition: color 0.35s ease-in-out;
}

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

.footer-contact {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid #e8e8e8;
  padding-top: 2rem;
  text-align: center;
  color: #888;
  font-size: 0.85rem;
}

.disclaimer {
  background: #f0f3f1;
  padding: 1.5rem;
  border-left: 4px solid #4A704F;
  border-radius: 4px;
  margin: 2rem 0;
  font-size: 0.9rem;
  line-height: 1.7;
}

.cta-button {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background: #4A704F;
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.35s ease-in-out, transform 0.35s ease-in-out;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 1rem;
}

.cta-button:hover {
  background: #2d4630;
  transform: translateY(-2px);
  text-decoration: none;
  color: #ffffff;
}

form {
  max-width: 600px;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  color: #4A704F;
  font-weight: 500;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.35s ease-in-out;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: #4A704F;
  box-shadow: 0 0 0 2px rgba(74, 112, 79, 0.1);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 2px solid #4A704F;
  padding: 1.5rem;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  z-index: 999;
  animation: slideUp 0.35s ease-in-out;
  max-height: 300px;
  overflow-y: auto;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner.hidden {
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4A704F;
  min-width: 250px;
}

.cookie-text strong {
  color: #4A704F;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.cookie-button {
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.35s ease-in-out;
  font-size: 0.9rem;
}

.cookie-accept {
  background: #4A704F;
  color: #ffffff;
}

.cookie-accept:hover {
  background: #2d4630;
}

.cookie-decline {
  background: transparent;
  color: #4A704F;
  border: 1px solid #4A704F;
}

.cookie-decline:hover {
  background: #f0f3f1;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

th, td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e8e8e8;
}

th {
  background: #f9faf8;
  font-weight: 600;
  color: #4A704F;
}

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

.align-left {
  float: left;
  margin-right: 2rem;
  margin-bottom: 1rem;
  max-width: 45%;
}

.align-right {
  float: right;
  margin-left: 2rem;
  margin-bottom: 1rem;
  max-width: 45%;
}

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

@media (max-width: 768px) {
  header {
    height: 56px;
  }

  body {
    padding-top: 56px;
  }

  .header-content {
    padding: 0 16px;
  }

  nav {
    display: none;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  main {
    padding: 0 16px;
  }

  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 2rem 0;
  }

  .section {
    padding: 2rem 0;
  }

  .grid-2-col {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .grid-3-col {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    padding: 0 16px;
  }

  .align-left,
  .align-right {
    float: none;
    margin: 1rem 0;
    max-width: 100%;
  }

  .cookie-content {
    flex-direction: column;
    padding: 0 16px;
  }

  .cookie-text {
    width: 100%;
    min-width: auto;
  }

  .cookie-buttons {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .logo {
    font-size: 1.1rem;
  }

  .logo img {
    width: 28px;
    height: 28px;
  }

  nav {
    display: none;
  }

  .footer-grid {
    gap: 1.5rem;
  }

  .cookie-buttons {
    gap: 0.5rem;
  }

  .cookie-button {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}
