* {
  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: #2c2c2c;
  background-color: #fafafa;
}

.header {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px 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: #1B5E20;
  text-decoration: none;
  letter-spacing: -0.5px;
}

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

.nav-links a {
  color: #2c2c2c;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #1B5E20;
}

.hero {
  background-color: #ffffff;
  padding: 5rem 0;
  text-align: center;
}

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

.hero p {
  font-size: 1.2rem;
  color: #5a5a5a;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.hero-image {
  max-width: 100%;
  height: auto;
  margin-top: 2rem;
  border-radius: 4px;
}

.section {
  padding: 4rem 0;
}

.section-white {
  background-color: #ffffff;
}

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

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

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

h3 {
  font-size: 1.5rem;
  color: #2c2c2c;
  margin-bottom: 1rem;
  font-weight: 600;
}

p {
  margin-bottom: 1.2rem;
}

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

.content-with-image img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.equipment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.equipment-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.equipment-item img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

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

.disclaimer-box h3 {
  color: #1B5E20;
  margin-bottom: 1rem;
}

.cta-section {
  text-align: center;
  padding: 4rem 0;
  background-color: #f5f5f5;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  margin-bottom: 2rem;
  color: #5a5a5a;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #1B5E20;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 1rem;
  transition: background-color 0.2s;
  border: none;
  cursor: pointer;
}

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

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
}

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

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

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

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

.form-disclaimer {
  background-color: #f5f5f5;
  border: 1px solid #d0d0d0;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 4px;
  font-size: 0.95rem;
  color: #5a5a5a;
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  color: #1B5E20;
  margin-bottom: 0.75rem;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.footer-section p,
.footer-section a {
  color: #d0d0d0;
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-section a {
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #4a4a4a;
  color: #a0a0a0;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  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.show {
  display: block;
}

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

.cookie-banner button {
  padding: 0.5rem 1.5rem;
  background-color: #1B5E20;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.95rem;
}

.cookie-banner button:hover {
  background-color: #2e7d32;
}

.policy-content {
  padding: 3rem 0;
}

.policy-content h1 {
  margin-bottom: 2rem;
}

.policy-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.policy-content ul,
.policy-content ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.policy-content li {
  margin-bottom: 0.75rem;
}

.educational-notice {
  background-color: #e8f5e9;
  border: 2px solid #1B5E20;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
  text-align: center;
}

.educational-notice p {
  margin: 0;
  font-weight: 500;
  color: #1B5E20;
}

@media (min-width: 768px) {
  .content-with-image {
    grid-template-columns: 2fr 1fr;
  }
  
  .content-with-image.reverse {
    grid-template-columns: 1fr 2fr;
  }
  
  .content-with-image.reverse .text-content {
    order: 2;
  }
  
  .content-with-image.reverse img {
    order: 1;
  }
  
  .equipment-item {
    grid-template-columns: 1fr 1fr;
  }
  
  .equipment-item:nth-child(even) {
    direction: rtl;
  }
  
  .equipment-item:nth-child(even) > * {
    direction: ltr;
  }
  
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 1rem;
  }
  
  .header .container {
    flex-direction: column;
    gap: 1rem;
  }
}
