body {
  margin: 0;
  font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
  background: linear-gradient(120deg, #f3f7f0 0%, #faf9f6 100%);
  color: #222;
}
.LISSHOIMAH-header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 80px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(58,125,68,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.company-logo {
  width: 180px;
  height: 60px;
  background-image: url('img/company-logo.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.LISSHOIMAH-nav ul {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.LISSHOIMAH-nav a {
  text-decoration: none;
  color: #3A7D44;
  font-weight: 600;
  font-size: 18px;
  padding: 8px 18px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.LISSHOIMAH-nav a.active, .LISSHOIMAH-nav a:hover {
  background: linear-gradient(90deg, #3A7D44 60%, #FFB347 100%);
  color: #fff;
}
.LISSHOIMAH-banner {
  width: 100%;
  height: 260px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  position: relative;
}
.LISSHOIMAH-banner-content {
  background: rgba(255,255,255,0.82);
  border-radius: 24px;
  padding: 32px 48px;
  box-shadow: 0 4px 24px rgba(58,125,68,0.10);
  text-align: center;
}
.LISSHOIMAH-banner-content h1 {
  font-size: 36px;
  color: #3A7D44;
  font-weight: 900;
  margin: 0 0 10px 0;
  letter-spacing: 1px;
}
.LISSHOIMAH-banner-content p {
  font-size: 18px;
  color: #444;
  margin: 0;
}
.LISSHOIMAH-section {
  max-width: 1200px;
  margin: 64px auto 0 auto;
  padding: 0 40px;
}
.LISSHOIMAH-contact-main {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.LISSHOIMAH-contact-info {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(58,125,68,0.10);
  padding: 40px 36px 32px 36px;
  min-width: 320px;
  max-width: 400px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.LISSHOIMAH-contact-info-title {
  font-size: 20px;
  color: #3A7D44;
  font-weight: 800;
  margin-bottom: 18px;
}
.LISSHOIMAH-contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}
.LISSHOIMAH-contact-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3A7D44;
  font-size: 16px;
}
.LISSHOIMAH-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F3F7F0;
  margin-right: 8px;
  transition: background 0.2s, box-shadow 0.2s;
}
.LISSHOIMAH-contact-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}
.LISSHOIMAH-contact-icon:hover {
  background: #FFB347;
  box-shadow: 0 2px 8px rgba(255,179,71,0.10);
}
.LISSHOIMAH-contact-social {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.LISSHOIMAH-contact-social a {
  text-decoration: none;
}
.LISSHOIMAH-contact-form {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(58,125,68,0.10);
  padding: 40px 36px 32px 36px;
  min-width: 320px;
  max-width: 500px;
  flex: 2 1 320px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.LISSHOIMAH-contact-form-title {
  font-size: 20px;
  color: #3A7D44;
  font-weight: 800;
  margin-bottom: 18px;
}
.LISSHOIMAH-contact-form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.LISSHOIMAH-contact-form-group label {
  font-size: 15px;
  color: #3A7D44;
  font-weight: 600;
  margin-bottom: 6px;
}
.LISSHOIMAH-contact-form-group input,
.LISSHOIMAH-contact-form-group textarea {
  font-size: 16px;
  padding: 12px 14px;
  border: 1.5px solid #e6e6e6;
  border-radius: 10px;
  background: #f9fafb;
  color: #222;
  outline: none;
  transition: border 0.2s;
  resize: none;
}
.LISSHOIMAH-contact-form-group input:focus,
.LISSHOIMAH-contact-form-group textarea:focus {
  border: 1.5px solid #3A7D44;
}
.LISSHOIMAH-btn-primary {
  display: inline-block;
  background: linear-gradient(90deg, #3A7D44 60%, #FFB347 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 14px 38px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(58,125,68,0.10);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  margin-top: 8px;
  width: fit-content;
  border: none;
  cursor: pointer;
}
.LISSHOIMAH-btn-primary:hover {
  background: linear-gradient(90deg, #FFB347 60%, #3A7D44 100%);
  transform: translateY(-2px) scale(1.04);
}
/* 页脚样式与首页一致 */
.LISSHOIMAH-footer {
  background: linear-gradient(90deg, #f3f7f0 60%, #e6f4ea 100%);
  border-top: 1px solid #e6e6e6;
  margin-top: 64px;
  padding: 0;
}
.LISSHOIMAH-footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 40px 24px 40px;
  gap: 48px;
}
.LISSHOIMAH-footer-col {
  flex: 1 1 0;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.LISSHOIMAH-footer-brand {
  align-items: flex-start;
}
.LISSHOIMAH-footer-desc {
  color: #3A7D44;
  font-size: 16px;
  line-height: 1.7;
  margin-top: 12px;
  max-width: 260px;
}
.LISSHOIMAH-footer-title {
  font-size: 18px;
  font-weight: 700;
  color: #3A7D44;
  margin-bottom: 16px;
}
.LISSHOIMAH-footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.LISSHOIMAH-footer-nav a {
  color: #444;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s;
}
.LISSHOIMAH-footer-nav a:hover {
  color: #3A7D44;
}
.LISSHOIMAH-footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.LISSHOIMAH-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3A7D44;
  font-size: 15px;
}
.LISSHOIMAH-footer-icon-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F3F7F0;
  margin-right: 8px;
  transition: background 0.2s, box-shadow 0.2s;
}
.LISSHOIMAH-footer-icon-svg svg {
  width: 22px;
  height: 22px;
  display: block;
}
.LISSHOIMAH-footer-icon-svg:hover, .LISSHOIMAH-footer-social a:hover {
  background: #FFB347;
  box-shadow: 0 2px 8px rgba(255,179,71,0.10);
}
.LISSHOIMAH-footer-social {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.LISSHOIMAH-footer-social a {
  text-decoration: none;
}
.LISSHOIMAH-footer-divider {
  width: 100%;
  height: 1px;
  background: #e6e6e6;
  margin: 0 auto;
}
.LISSHOIMAH-footer-copyright {
  color: #888;
  font-size: 15px;
  text-align: center;
  padding: 18px 0 12px 0;
}
.company-name {
  font-size: 28px;
  font-weight: 900;
  color: #3A7D44;
  margin-left: 6px;
  letter-spacing: 1.2px;
  font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
  display: flex;
  align-items: center;
  height: 60px;
  user-select: none;
}
@media (max-width: 900px) {
  .LISSHOIMAH-header-wrapper {
    flex-direction: column;
    height: auto;
    padding: 0 16px;
  }
  .LISSHOIMAH-nav ul {
    gap: 18px;
  }
  .LISSHOIMAH-banner {
    height: 160px;
  }
  .LISSHOIMAH-banner-content {
    padding: 18px 10px;
  }
  .LISSHOIMAH-section {
    padding: 0 8px;
  }
  .LISSHOIMAH-contact-main {
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
  }
  .LISSHOIMAH-contact-info, .LISSHOIMAH-contact-form {
    min-width: 0;
    max-width: 100%;
    padding: 24px 8px 18px 8px;
  }
  .LISSHOIMAH-footer-main {
    flex-direction: column;
    gap: 32px;
    padding: 32px 8px 16px 8px;
  }
  .LISSHOIMAH-footer-col {
    min-width: 0;
    align-items: flex-start;
  }
  .LISSHOIMAH-footer-social {
    margin-bottom: 8px;
  }
} 