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

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  background-color: #fff;
}

h1 {
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  color: #1B5E20;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  margin-top: 2.5rem;
  line-height: 1.3;
  color: #1B5E20;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 2rem;
  line-height: 1.3;
  color: #1B5E20;
}

p {
  margin-bottom: 1.2rem;
}

a {
  color: #1B5E20;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.7;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1B5E20;
}

.logo img {
  height: 40px;
  width: 40px;
  margin-right: 10px;
  object-fit: contain;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  color: #333;
  font-weight: 500;
}

.hero {
  background-color: #f5f5f5;
  padding: 4rem 0;
  margin-bottom: 3rem;
}

.hero-content {
  text-align: center;
}

.hero h1 {
  margin-bottom: 1rem;
}

.hero-image {
  max-width: 100%;
  height: auto;
  margin: 2rem auto;
  display: block;
  max-height: 400px;
  object-fit: contain;
}

.section {
  padding: 3rem 0;
}

.content-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2rem;
}

.content-with-image img {
  max-width: 100%;
  height: auto;
  display: block;
  max-height: 350px;
  object-fit: contain;
}

.content-with-image.image-left {
  grid-template-columns: 1fr 1fr;
}

.content-with-image.image-left img {
  order: -1;
}

.content-with-image.image-right {
  grid-template-columns: 1fr 1fr;
}

.disclaimer-box {
  background-color: #f9f9f9;
  border-left: 4px solid #1B5E20;
  padding: 1.5rem;
  margin: 2rem 0;
}

.disclaimer-box h3 {
  margin-top: 0;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: #1B5E20;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.2s ease;
}

.btn:hover {
  background-color: #145018;
  opacity: 1;
}

.faq-item {
  margin-bottom: 2rem;
}

.faq-item h3 {
  color: #1B5E20;
  margin-top: 0;
}

.contact-form {
  background-color: #f9f9f9;
  padding: 2rem;
  margin-top: 2rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  font-family: inherit;
  font-size: 1rem;
}

.form-disclaimer {
  background-color: #fff3cd;
  border: 1px solid #ffc107;
  padding: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

footer {
  background-color: #f5f5f5;
  border-top: 1px solid #e0e0e0;
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-top: 0;
  font-size: 1.2rem;
}

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

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
  font-size: 0.95rem;
  color: #666;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  border-top: 2px solid #1B5E20;
  padding: 1.5rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 9999;
  display: none;
}

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

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

.cookie-text {
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

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

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

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

  .content-with-image {
    grid-template-columns: 1fr;
  }

  .content-with-image img {
    order: 0 !important;
  }

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

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.category-item {
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-left: 3px solid #1B5E20;
}

.category-item h3 {
  margin-top: 0;
}

.notice-banner {
  background-color: #e8f5e9;
  border: 1px solid #1B5E20;
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: center;
  font-weight: 500;
}
