* {
  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.05rem;
  line-height: 1.68;
  color: #2c3e50;
  background-color: #fafafa;
}

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

h2 {
  font-size: 1.95rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1.2rem;
  margin-top: 2.5rem;
  line-height: 1.35;
}

h3 {
  font-size: 1.48rem;
  font-weight: 500;
  color: #2c3e50;
  margin-bottom: 1rem;
  margin-top: 2rem;
  line-height: 1.4;
}

p {
  margin-bottom: 1.2rem;
}

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

a:hover {
  opacity: 0.8;
}

.header {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 1.2rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: #388E3C;
  cursor: pointer;
}

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

.nav-menu li a {
  color: #2c3e50;
  font-weight: 500;
}

.main-content {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

.hero-section {
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  padding: 4rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.hero-section h1 {
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.hero-section p {
  font-size: 1.2rem;
  color: #555;
  max-width: 800px;
}

.section {
  padding: 3.5rem 0;
  background-color: #ffffff;
  margin-bottom: 2rem;
}

.section-alt {
  background-color: #fafafa;
}

.content-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 4px;
  margin: 1rem 0;
}

.image-left {
  float: left;
  margin-right: 2rem;
  margin-bottom: 1rem;
}

.image-right {
  float: right;
  margin-left: 2rem;
  margin-bottom: 1rem;
}

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

.category-card {
  background: #ffffff;
  padding: 2rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  transition: border-color 0.2s ease;
}

.category-card:hover {
  border-color: #388E3C;
}

.category-card h3 {
  margin-top: 0;
  color: #388E3C;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: #388E3C;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.btn:hover {
  background-color: #2e7d32;
  color: #ffffff;
  opacity: 1;
}

.btn-outline {
  background-color: transparent;
  color: #388E3C;
  border: 2px solid #388E3C;
}

.btn-outline:hover {
  background-color: #388E3C;
  color: #ffffff;
}

.faq-section {
  background-color: #fafafa;
  padding: 3rem 0;
}

.faq-item {
  background: #ffffff;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 3px solid #388E3C;
  border-radius: 4px;
}

.faq-item h3 {
  margin-top: 0;
  font-size: 1.2rem;
}

.contact-form {
  background: #ffffff;
  padding: 2rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  max-width: 600px;
  margin: 2rem 0;
}

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

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

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

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

.disclaimer {
  background-color: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 4px;
  padding: 1.5rem;
  margin: 2rem 0;
  font-size: 0.95rem;
}

.info-box {
  background-color: #e8f5e9;
  border-left: 4px solid #388E3C;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.footer {
  background-color: #2c3e50;
  color: #ffffff;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer h3 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-top: 0;
}

.footer a {
  color: #a5d6a7;
}

.footer a:hover {
  color: #ffffff;
}

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

.footer-bottom {
  border-top: 1px solid #455a64;
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #b0bec5;
}

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

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

.cookie-banner p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  .nav-menu {
    flex-direction: column;
    gap: 1rem;
  }
  
  .content-image {
    max-width: 100%;
    float: none;
    margin: 1rem 0;
  }
  
  .image-left,
  .image-right {
    float: none;
    margin: 1rem 0;
  }
  
  .category-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

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