:root {
  --primary-color: #10aa65;
  --primary-dark-re: #054d46;
  --text-primary: #000000;
  --text-secondary: #62646a;
  --text-light: #ffffff;
  --border-color: #e2e2e2;
  --background-light: #f6f9f8;
  --background-white: #ffffff;
  --star-color: #f79e1b;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Jost', sans-serif;
  background-color: var(--background-white);
  color: var(--text-primary);
}
html, body {
    touch-action: manipulation; /* 防止双击缩放 */
    -webkit-text-size-adjust: 100%; /* 防止iOS调整文本大小 */
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* Hero Banner Styles */
.hero-banner {
   
    background-color: #10AA65;
    color: white;
    padding: 20px 0px;
}
.work-top{
  width: 1280px;
  margin: 0 auto;
   display: flex;
    align-items: center;
    justify-content: space-between;
}
.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-image {
    flex: 0 0 300px;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
}

.filter-modal {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.filter-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.filter-modal-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
}

.filter-modal.active .filter-modal-content {
    transform: translateY(0);
}

.filter-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.filter-modal-header h2 {
    margin: 0;
    font-size: 18px;
}

.close-modal {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #000;
}

.filter-modal-body {
    padding: 20px;
}

.filter-modal-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.apply-filters {
    background-color: #10aa65;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}
.clear-filters{
  color: #666666;
  background-color: #fff;
  font-size: 18px;
  outline: none;
  text-decoration: underline;
  border: none;
}

.filter-modal-body .filter-group {
    margin-bottom: 15px;
}

.filter-modal-body .filter-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.filter-modal-body .filter-options {
    display: none;
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.filter-modal-body .filter-options.active {
    display: block;
}

.filter-modal-body .divider {
    margin: 15px 0;
    border: none;
    border-top: 1px solid #eee;
}

@media (min-width: 768px) {
    .filter-modal {
        display: none !important;
    }
}