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

body {
  font-family: system-ui, -apple-system, Verdana, sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  z-index: 1000;
  padding: 15px 0;
}

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

.logo {
  font-size: 24px;
  font-weight: 600;
  color: #228B22;
  text-decoration: none;
  transition: opacity 0.25s;
}

.logo:hover {
  opacity: 0.8;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
}

.nav-links a {
  color: #333;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.25s;
}

.nav-links a:hover {
  color: #228B22;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  position: relative;
  margin-top: 60px;
  padding: 60px 20px;
}

.hero-content {
  max-width: 1200px;
  text-align: center;
}

.hero-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto 40px;
  display: block;
  border-radius: 8px;
}

.hero-content h1 {
  font-size: 48px;
  color: #228B22;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-content p {
  font-size: 20px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.content-section {
  padding: 100px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.content-section h2 {
  font-size: 36px;
  color: #228B22;
  margin-bottom: 30px;
  font-weight: 600;
}

.content-section h3 {
  font-size: 24px;
  color: #228B22;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.content-section p {
  font-size: 17px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.content-section ul {
  margin: 20px 0;
  padding-left: 30px;
}

.content-section li {
  font-size: 17px;
  color: #555;
  margin-bottom: 10px;
}

.image-left {
  float: left;
  width: 380px;
  height: auto;
  margin: 10px 30px 20px 0;
  border-radius: 6px;
}

.image-right {
  float: right;
  width: 380px;
  height: auto;
  margin: 10px 0 20px 30px;
  border-radius: 6px;
}

.table-responsive {
  margin: 30px 0;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

table th {
  background: #228B22;
  color: #fff;
  padding: 15px;
  text-align: left;
  font-weight: 600;
}

table td {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  color: #555;
}

table tr:hover {
  background: #f9f9f9;
}

.faq-section {
  background: #f9f9f9;
  padding: 100px 20px;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #e5e5e5;
}

.faq-item h3 {
  color: #228B22;
  font-size: 20px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #555;
  font-size: 16px;
  margin: 0;
}

.disclaimer-section {
  background: #fff9e6;
  padding: 50px 20px;
  border-top: 2px solid #228B22;
  border-bottom: 2px solid #228B22;
}

.disclaimer-content {
  max-width: 1000px;
  margin: 0 auto;
}

.disclaimer-content h2 {
  color: #228B22;
  font-size: 28px;
  margin-bottom: 20px;
}

.disclaimer-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

.cta-section {
  padding: 80px 20px;
  text-align: center;
  background: #f9f9f9;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  color: #228B22;
  font-size: 32px;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  background: #228B22;
  color: #fff;
  padding: 15px 40px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 18px;
  transition: background 0.25s;
  margin-top: 20px;
}

.cta-button:hover {
  background: #1a6b1a;
  text-decoration: none;
  color: #fff;
}

.contact-section {
  padding: 100px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  color: #228B22;
  font-size: 32px;
  margin-bottom: 30px;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-details h3 {
  color: #228B22;
  font-size: 20px;
  margin-bottom: 15px;
}

.contact-details p {
  color: #555;
  font-size: 16px;
  margin-bottom: 8px;
}

.contact-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 6px;
  margin-top: 20px;
}

.contact-form h3 {
  color: #228B22;
  font-size: 24px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: #333;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.25s;
}

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

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

.submit-button {
  background: #228B22;
  color: #fff;
  padding: 12px 40px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.25s;
}

.submit-button:hover {
  background: #1a6b1a;
}

.footer {
  background: #f9f9f9;
  border-top: 1px solid #e5e5e5;
  padding: 60px 20px 30px;
}

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

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

.footer-section h3 {
  color: #228B22;
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-section p,
.footer-section a {
  color: #555;
  font-size: 14px;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.25s;
}

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

.footer-note {
  text-align: center;
  color: #888;
  font-size: 13px;
  padding-top: 30px;
  border-top: 1px solid #e5e5e5;
  margin-top: 30px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  overflow: auto;
}

.modal-content {
  background: #fff;
  margin: 80px auto;
  padding: 40px;
  border-radius: 8px;
  max-width: 700px;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 32px;
  color: #888;
  cursor: pointer;
  transition: color 0.25s;
  background: none;
  border: none;
  line-height: 1;
}

.modal-close:hover {
  color: #228B22;
}

.modal-content h2 {
  color: #228B22;
  font-size: 28px;
  margin-bottom: 20px;
}

.modal-content h3 {
  color: #228B22;
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 12px;
}

.modal-content p {
  color: #555;
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.modal-content ul {
  margin: 15px 0;
  padding-left: 25px;
}

.modal-content li {
  color: #555;
  font-size: 15px;
  margin-bottom: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 2px solid #228B22;
  padding: 25px 20px;
  z-index: 1500;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

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

.cookie-text {
  flex: 1;
}

.cookie-text p {
  color: #555;
  font-size: 14px;
  margin: 0;
}

.cookie-button {
  background: #228B22;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.25s;
}

.cookie-button:hover {
  background: #1a6b1a;
}

.success-popup {
  display: none;
  position: fixed;
  z-index: 2500;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.success-popup h3 {
  color: #228B22;
  font-size: 24px;
  margin-bottom: 15px;
}

.success-popup p {
  color: #555;
  font-size: 16px;
  margin-bottom: 20px;
}

.success-popup button {
  background: #228B22;
  color: #fff;
  padding: 10px 30px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.25s;
}

.success-popup button:hover {
  background: #1a6b1a;
}

.popup-overlay {
  display: none;
  position: fixed;
  z-index: 2400;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .nav-links {
    gap: 15px;
  }
  
  .nav-links a {
    font-size: 13px;
  }
  
  .hero-content h1 {
    font-size: 32px;
  }
  
  .hero-content p {
    font-size: 18px;
  }
  
  .content-section {
    padding: 60px 15px;
  }
  
  .content-section h2 {
    font-size: 28px;
  }
  
  .image-left,
  .image-right {
    float: none;
    width: 100%;
    margin: 20px 0;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  
  .cookie-button {
    width: 100%;
  }
  
  .modal-content {
    margin: 40px 20px;
    padding: 30px 20px;
  }
}

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