:root {
    --primary-color: #10B981; /* Green primary color from design */
    --primary-dark: #059669;
    --primary-light: #ECFDF5;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --white: #FFFFFF;
    --light-bg: #F9FAFB;
    --border-radius: 0.5rem;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.05);
}
    ul{
        list-style: none;
    }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            background-color: var(--light-bg);
            line-height: 1.5;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            flex-wrap: nowrap;
            padding: 0 ;
        }

      
        header {
            background-color: var(--white);
            box-shadow: var(--shadow-sm); 
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo i {
            margin-right: 0.5rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            margin-bottom: 0;
            padding-left: 0;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        .nav-buttons {
            display: flex;
            gap: 1rem;
            align-items: center;
        }
        .custom-dropdown {
  position: relative;
  display: inline-block;
}

.custom-btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.custom-btn-outline {
  color: #6c757d;
  background-color: transparent;
  background-image: none;
  border-color: #6c757d;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.custom-dropdown-toggle:after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.custom-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.custom-dropdown-menu.show {
  display: block;
}

.custom-dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  text-decoration: none;
}

.custom-dropdown-item:hover, .custom-dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}


        .btn {
            padding: 0.5rem 1.25rem;
            border-radius: var(--border-radius);
            font-weight: 500;
            text-decoration: none;
            transition: all 0.2s;
            border: none;
            cursor: pointer;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn-primary {
            background-color: var(--primary-color);
            color: white;
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
        }
        .btn-primary:active {
            background-color: var(--primary-dark) !important;
        }
         .btn-primary:focus-visible {
            background-color: var(--primary-dark);
        }

        .btn-outline {
            border: 1px solid var(--primary-color);
            color: var(--primary-color);
            background-color: transparent;
        }

        .btn-outline:hover {
            /* background-color: var(--primary-light); */
        }
        .log-in{
            background-color: #054d46;
            color: #fff;
            border: 1px solid #054d46;
        }
        /* Hero Section */
        .hero {
            /* padding: 4rem 0; */
            background-color: #F6F9F8;
            position: relative;
            overflow: hidden;
            height: 600px;
            position: relative;
        }
        .hero-buttons .btn{
            padding: 15px 20px;
            margin-right: 20px;

        }
        .hero-content {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .hero-text {
            flex: 1;
            margin-top: -60px;
            font-family: 'Jost', sans-serif;
        }

        .hero-image {
            /* flex: 1; */
            text-align: right;
            position: relative;
            width: 1199px;
            height: 552px;
            inset: 168px 0px auto auto;
            position: absolute;
            right: -20px;
            top: 55px;
        }
        .maskgroup{
            position: absolute;
            right: 25px;
            top: -0px;
        }
        .zan-img{
            position: absolute;
            right: 600px;
            top: 110px;
        }

        .hero-image img {
            max-width: 100%;
            height: auto;
        }

        .hero h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: #000;
        }

        .hero p {
            color: #62646A;
           
            max-width: 500px;
            font-size: 24px;
           
        }

        /* Stats Bar */
        .stats-bar {
            background-color: var(--primary-light);
            padding: 1rem 0;
            margin-bottom: 2rem;
        }

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

        .stat-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .stat-item i {
            color: var(--primary-color);
            font-size: 1.25rem;
        }

        .stat-item span {
            font-weight: 600;
        }

        /* Main Content Sections */
        .section {
            /* padding: 3rem 0; */
            margin-bottom: 30px;
        }
        .channel-imgs{
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            row-gap:20px;
            align-items: center;
            margin-bottom: 100px;
            margin-top: 50px;
            
        }
        .learn-how{
            color: var(--primary-color);
            text-decoration: underline;
            
        }
        .section-header {
            text-align: left;
            margin-bottom: 0px;
        }
        .section-header h2{
            font-family: 'Jost';
            font-size: 44px;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            color: var(--text-gray);
            max-width: 600px;
            /* margin: 0 auto; */
        }

        /* 工作列表精确样式匹配 */
        .job-listings {
            padding: 2rem 0;
        }

        .filters {
            display: flex;
            gap: 0.75rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 0.5rem 1.25rem;
            background-color: white;
            border: 1px solid #e5e7eb;
            border-radius: 4px;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.2s;
        }

        .filter-btn.active {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }

        .jobs-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .job-card {
          
             display: flex;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            overflow: hidden;
            border:1px solid #E2E2E2 ;
            height: 240px; /* 固定高度为230px */
        }
       
        .featured .profile-section .rating{
            color: #fff;
        }
        .featured .profile-section .rating span{
            color: #fff;
        }
        .jobs-buttons{
            height: 40px;
            text-align: center;
            margin-top: 50px;
        }
         .jobs-buttons .btn{
            height: 40px;
         }
        .jobs-buttons  .btn-outline{
            border: none;
            color: #000;
        }
         .jobs-buttons  .btn-outline:hover{
            background-color:#fff;
        }
        /* 特色卡片样式 - 带绿色侧边栏 */
     

        .profile-section {
            width: 150px;
            flex-shrink: 0;
            padding-top: 20px; /* 减少内边距 */
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            /* border-right: 1px solid #f3f4f6; */
            background-color: #F6F9F8;
            box-sizing: border-box;
        }

       

        .profile-info h4 {
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

      

        .job-content {
            flex-grow: 1;
            padding: 20px; /* 减少内边距 */
            display: flex;
            flex-direction: column;
        }

        .job-header {
           
        }

        .header-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.5rem;
        }

        .posted-time {
            font-size: 0.75rem;
            color: var(--text-gray);
        }

        .new-badge {
            background-color: #ff9800;
            color: white;
            font-size: 0.7rem;
            padding: 0.15rem 0.5rem;
            border-radius: 4px;
            text-transform: uppercase;
            font-weight: 600;
        }


        .tag {
            font-size: 0.75rem;
            padding: 0.25rem 0.75rem;
            background-color: #f3f4f6;
            border-radius: 4px;
            color: var(--text-gray);
        }

        .job-description {
            font-size: 0.9rem;
            color: var(--text-gray);
            line-height: 1.5;
            margin-bottom: 1rem;
            width: 100%;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;


        }

        .job-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1rem;
            border-top: 1px solid #f3f4f6;
        }

        .price {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--text-dark);
        }

       

        .meta-info span {
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .jobs-container {
                grid-template-columns: 1fr;
            }
        }
        .jobs-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .job-card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            overflow: hidden;
            transition: transform 0.2s;
            position: relative;
            /* flex-direction: column-reverse; */
        }

        .job-card:hover {
        
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
          .job-card:hover .profile-section{
            background-color: #10AA65;
            color: #fff;
        }
         .job-card:hover .profile-section{
            background-color: #10AA65;
            color: #fff;
        }
        .job-card:hover .job-title {
            text-decoration: underline;
            color: #10AA65;
        }
       .job-card:hover .profile-section .rating{
            color: #fff;
        }
        .job-card:hover .profile-section .rating span{
            color: #fff;
        }
        .job-card-header {
            padding: 1rem 1.25rem;
            border-bottom: 1px solid #f3f4f6;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .profile-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 0.5rem; /* 减少底部间距 */
        }

        .job-meta {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .posted-time {
            font-size: 0.75rem;
            color: var(--text-gray);
        }

        .new-badge {
            background-color: #ff9800;
            color: white;
            font-size: 0.7rem;
            padding: 0.15rem 0.5rem;
            border-radius: 4px;
            text-transform: uppercase;
            font-weight: 600;
        }

        .job-title {
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
            color: #000;
            /* padding: 0 1.25rem; */
            margin-top: 1rem;
            text-align: left;
        }

        .job-tags {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            padding: 0 0 0.5rem;
        }

        .tag {
            font-size: 0.75rem;
            padding: 0.25rem 0.75rem;
            background-color: #f3f4f6;
            border-radius: 40px;
            color: var(--text-gray);
        }

        .job-description {
           font-size: 0.9rem;
            color: var(--text-gray);
            line-height: 1.4; /* 降低行高 */
            margin-bottom: 1rem;
            width: 100%;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            max-height: 40px; 
        }

        .job-footer {
            padding: 10px;
            /* border-top: 1px solid #f3f4f6; */
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: absolute;
            bottom: 15px;
            background-color: #fff;
            left: 20px;
            border-radius: 50px;
            border: 1px solid #fff;
            width: 90%;
        }
        .new-tag{
            position: absolute;
            right: 0;
            top: 0;
        }
        .rating {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            color: #ffc107;
             justify-content: center;
        }

        .rating span {
            color: var(--text-dark);
            font-weight: 500;
        }

        .job-details {
            display: flex;
            gap: 1rem;
            font-size: 0.85rem;
        }

        .price {
            font-weight: 600;
            color: var(--text-dark);
        }

        .duration, .location, .applicants {
            color: var(--text-gray);
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        .duration i, .location i, .applicants i {
            font-size: 0.9rem;
        }
        /* Earnings Section */
        .earnings-section {
            background-color: var(--white);
        }

        .earnings-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .earning-card {
            background-color: var(--light-bg);
            border-radius: var(--border-radius);
            padding: 1.5rem;
            box-shadow: var(--shadow-sm);
            transition: transform 0.2s;
        }

        .earning-card:hover {
            transform: translateY(-5px);
        }

        .earning-card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1rem;
        }

        .earning-card-icon {
            width: 40px;
            height: 40px;
            background-color: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
        }

        .earning-card-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .earning-card-amount {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .earning-card-period {
            color: var(--text-gray);
            font-size: 0.875rem;
        }
        /* testimonial-section */
      
        .testimonial-section {
            background-color: white;
        }

        .testimonial-cards {
            margin-top: 2rem;
        }

        .testimonial-card {
            transition: transform 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
        }

        .avatar-container {
            border-radius: 8px;
            overflow: hidden;
        }
         .testimonial-card {
            transition: all 0.3s ease;
            flex: 0 0 auto; /* 防止卡片收缩 */
            width: calc(25% - 1rem); /* 四卡片等宽排列 */
            margin-right: 1.5rem;
        }
        .testimonial-container {
            display: flex;
            /* overflow-x: auto; 小屏幕横向滚动 */
            padding-bottom: 1rem;
            scrollbar-width: none; /* 隐藏滚动条 */
            gap: 20px;
        }
        .testimonial-container::-webkit-scrollbar {
            display: none; /* 隐藏滚动条 */
        }
        .testimonial-card:last-child {
            margin-right: 0;
        }
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .testimonial-card img {
            width: 100%;
            height: 200px;
            object-cover: cover;
        }

        .rounded-full{
            object-fit: cover;
        }
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .step-card {
            background-color: var(--white);
            border-radius: var(--border-radius);
            padding: 2rem;
            text-align: center;
            box-shadow: var(--shadow-sm);
        }

        .step-number {
            width: 50px;
            height: 50px;
            background-color: var(--primary-light);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin: 0 auto 1.5rem;
        }

        .step-title {
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .step-description {
            color: var(--text-gray);
        }

        /* CTA Section */
        .cta-section {
            background-color: var(--primary-color);
            color: white;
            padding: 4rem 0;
            text-align: center;
        }

        .cta-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .cta-subtitle {
            max-width: 600px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }

        .cta-button {
            background-color: white;
            color: var(--primary-color);
            font-weight: 600;
            padding: 0.75rem 2rem;
            border-radius: var(--border-radius);
            text-decoration: none;
            display: inline-block;
            transition: all 0.2s;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
  box-shadow: none;
}
.testimonials-title-group {
  max-width: 735px;
}
.title {
  font-weight: 600;
  font-size: 44px;
  line-height: 1.2; /* Adjusted for readability */
  color: #000000;
  margin: 0;
}
.subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #62646a;
  margin: 23px 0 0 0;
}
.testimonials-nav {
  display: flex;
  gap: 10px;
}
.arrow-button {
  width: 46px;
  height: 46px;
  background-color: #ffffff;
  border: 1px solid #e2e2e2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.3s;
}
.arrow-button:hover {
  background-color: #f0f0f0;
}
.arrow-button img {
  width: 16px;
  height: auto;
}
        /* Features Section */
        .features-section {
            background-color: var(--white);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-card {
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background-color: var(--primary-light);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink:0;
        }

        .feature-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .feature-description {
            color: var(--text-gray);
        }

        /* Testimonials Section */
        .testimonials-section {
            background-color: var(--light-bg);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 3rem;
        }

        .testimonial-card-easy {
            /* width: calc(25% - 15px); */
            background-color: #F6F9F8;
            border-radius: 6px;
            padding: 0;
            transition: transform 0.3s ease-in-out;
            
        }
        .testimonial-card-easy .w-full{
            width: 100%;
        }
        .easy-title{
            text-align: left;
            margin-bottom: 50px;
        }
        .easy-title h2{
            font-size: 44px;
            font-weight: 600;
            text-align: left !important;
        }
        .easy-title span{
            text-align: left !important;
            font-size: 16px;
            color: #62646A;
        }
        .card-easy-contant{
            padding: 20px;
            box-sizing: border-box;
            font-size: 14px;
        }
       .card-easy-contant .location{
            
        }
        .client-rating {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 5px;
            font-family: 'Jost', sans-serif;
            font-size: 16px;
            font-weight: 500;
        }
         .card-easy-contant h3{
            font-size: 24px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            flex-wrap: wrap;
         }
         .client-rating img{
             width: 15px;
         }


        .testimonial-text {
            color: var(--text-gray);
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        .author-info h4 {
            font-weight: 600;
            font-size: 1rem;
        }

        .author-info p {
            color: var(--text-gray);
            font-size: 0.875rem;
        }

        /* About Section */
        .about-section {
            background-color: var(--white);
            padding-bottom: 3rem;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .about-image {
            flex: 1;
        }

        .about-image img {
            max-width: 100%;
            height: auto;
            border-radius: var(--border-radius);
        }

        .about-text {
            flex: 1;
        }

        .about-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .about-stat {
            text-align: center;
        }

        .stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.25rem;
        }

    

        /* Footer */
        footer {
            background-color: var(--text-dark);
            color: white;
            padding: 4rem 0 2rem;
        }

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

        /* .footer-column h3 {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 3px;
            background-color: var(--primary-color);
        } */

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.2s;
        }

        .social-links a:hover {
            background-color: var(--primary-color);
            transform: translateY(-2px);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.875rem;
        }
        .features-container {
    width: 100%;
    max-width: 1280px;
    
  }

  .feature-card-great {
    display: flex;
    background-color: #054d46;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  }
  #sellers-section  .feature-card-great {
    background-color: #10AA65;
  }
  .image-column {
    flex: 1 1 50%;
    min-width: 0; /* Prevents flex item from overflowing */
      width: 1200px;
        overflow: hidden;
        height: 500px;
}

  .feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
      
  }

  .content-column {
    flex: 1 1 50%;
    padding: 45px 50px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .pill-tag {
    background-color: #10aa65;
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 60px;
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    align-self: flex-start;
    margin-bottom: 9.5px; /* (3300 - (3252 + 36)) / 2 = 6, but visually closer to 12px total gap */
  }

  .feature-title {
    font-size: 44px;
    font-weight: 600;
    line-height: 60px;
    margin: 12px 0 0 0;
  }

  .feature-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 6px 0 0 0;
    max-width: 496px;
  }

  .feature-list {
    list-style: none;
    padding: 0;
    margin: 120px 0 0 0; /* Based on y:3510 - (y:3366 + h:24) */
  }

  .feature-item-great {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
  }

  .feature-item-great:not(:last-child) {
    margin-bottom: 26px; /* 50px vertical gap - 24px line height */
  }

  .feature-icon-great {
    width: 18px;
    height: 18px;
    margin-right: 10px; /* Based on x:-1139 - x:-1166 */
    flex-shrink: 0;
  }
  

.features-section-system {
    background-color: #f6f9f8;
    padding: 80px 40px;
    overflow: hidden;
  }

  .features-container-system {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    align-items: start;
  }

  .feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .feature-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 18px; /* Gap between icon bottom (3958+66=4024) and title top (4042) */
  }

  .feature-title {
    color: #000000;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.45; /* Approx 31.8px */
    margin: 0 0 20px 0; /* Gap between title bottom (4042+24=4066) and description top (4086) */
  }
  .feature-title-great{
    font-size: 44px;
  }
  .feature-description {
    color: #4d4d4d;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5; /* 24px */
    margin: 0;
    max-width: 330px;
  }
  .how-it-works{
    
  }
.talent-network-container {
    display: flex;
    max-width: 1920px;
    margin: 0 auto;
    min-height: 650px;
  }

  .background-image {
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
  }

  .background-image-left {
    width: 37.5%; /* 720 / 1920 */
  }

  .background-image-right {
    width: 16.61%; /* 319 / 1920 */
  }

  .content-wrapper {
    flex-grow: 1;
    width: 45.83%; /* 880 / 1920 */
    background-color: #10aa65;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 80px;
  }

  .content-inner {
    width: 100%;
  }

  .client-tag {
    display: inline-block;
    background-color: #054d46;
    border-radius: 60px;
    padding: 6px 20px;
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    margin-bottom: 26px;
  }

  .main-heading {
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2; /* Corrected from Figma's 24px */
    margin: 0 0 26px 0;
  }

  .sub-heading {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 100px 0;
    max-width: 637px;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 43px 94px;
  }

  .feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-icon-net {
    width: 30px;
    height: 30px;
    margin-bottom: 5px;
  }

  .feature-title-net {
    font-size: 20px;
    font-weight: 500;
    line-height: 29px;
    margin: 0 0 9px 0;
  }

  .feature-description-net {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
  }
/* // :pop */
.release-work-section {
  background-color: #ffffff;
  padding: 80px 0;
  overflow: hidden;
}

.release-work-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.release-work-section .text-content {
  flex: 1;
  max-width: 595px;
}

.release-work-section .main-heading {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 44px;
  line-height: 54px;
  color: #000000;
  margin: 0 0 14px 0;
  min-width: 690px;
}

.release-work-section .sub-heading {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  color: #62646a;
  margin: 0 0 80px 0;
}

.release-work-section .sub-heading a {
  color: #10aa65;
  text-decoration: underline;
  font-weight: 400;
}

.release-work-section .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.release-work-section .feature-item-release {
  display: flex;
  align-items: center;
  gap: 25px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
}

.release-work-section .feature-icon-release {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.release-work-section .image-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.release-work-section .image-stack {
  position: relative;
  width: 566px;
  height: 471px;
}

.release-work-section .image-stack img {
  position: absolute;
  max-width: 100%;
}

.release-work-section .main-illustration {
  width: 566px;
  height: 444px;
  top: 0;
  left: 0;
}

.release-work-section .decorative-swoosh {
  width: 542px;
  height: 60px;
  top: 411px;
  left: 12px;
}

.about-us-container {
    position: relative;
    max-width: 1280px;
    margin: 0px auto;
    border-radius: 6px;
    overflow: hidden;
    color: #ffffff;
  }

  .about-us-background-image {
    display: block;
    width: 100%;
    height: 500px;
    object-fit: cover;
  }

  .about-us-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding: 89px 40px 72px;
    /* background: rgba(0, 0, 0, 0.5); Added a subtle overlay for better text readability */
  }

  .about-us-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-us-title {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 44px;
    line-height: 1.2; /* Adjusted for readability */
    margin: 0;
    margin-bottom: 26px;
  }

  .about-us-description {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    max-width: 700px;
    margin: 0;
    margin-bottom: 44px;
  }

  .about-us-button {
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid #ffffff;
    border-radius: 6px;
    padding: 12px 41px; /* Adjusted padding for better visual balance */
    transition: background-color 0.3s, color 0.3s;
  }

  .about-us-button:hover {
    background-color: #ffffff;
    color: #333333;
  }

  .about-us-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px; /* Approximate gap between items */
    display: none;
  }

  .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .stat-number {
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 60px;
    color: #32c483;
    line-height: 1; /* Adjusted for proper display */
  }

  .stat-label {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
  }

  .stat-separator {
    width: 1px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.5);
  }
 .commission-container {
    max-width: 1280px;
    margin: 0 auto;
    background-color: #f6f9f8;
    border-radius: 6px;
    display: flex;
    align-items: center;
    overflow: hidden;
    min-height: 300px;
  }

  .commission-image-wrapper {
    flex-shrink: 0;
  }

  .commission-image {
    display: block;
    width: 310px;
    height: 283px;
    object-fit: cover;
  }

  .commission-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 80px 20px 85px;
  }

  .commission-title {
    color: #000000;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 44px;
    line-height: 44px;
    margin: 0;
  }

  .commission-description {
    color: #62646a;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin: 7px 0 0 0;
  }

  .commission-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
    padding: 14px 16px;
    background-color: #10aa65;
    color: #ffffff;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    border: 2px solid #10aa65;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
  }

  .commission-button:hover {
    background-color: #0d8f56;
  }
  .commission-section {
    padding: 40px 20px;
    background-color: #ffffff;
    
  }
  .testimonials-section{
    overflow: hidden;
  }
/* 评论项卡片样式 */
.reviews-item.card {
    /* display: flex; */
    /* align-items: flex-start; */
    padding: 1.5rem;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
}
.reviews-header-top{
    display: flex;
    align-items: center;
}
/* 头像样式 */
.reviews-avatar {
    margin-right: 1rem;
    flex-shrink: 0;
}

.reviews-avatar img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    /* border: 2px solid #f0f0f0; */
}

/* 内容区域 */
.reviews-content {
    flex-grow: 1;
    min-width: 0;
}

/* 头部信息 */
.reviews-header {
    /* display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    flex-wrap: wrap; */
}
.reviews-name {
    font-size: 1rem;
    font-weight: 600;
    color: #333333;
    margin-right: 0.75rem;
    margin-bottom: 0.25rem;
}

/* 评分样式 */
.reviews-rating {
    display: flex;
    align-items: center;
    margin-right: auto;
    margin-bottom: 0.25rem;
}
.reviews-header-right{
    display: flex;
    justify-content: space-between;
}

.rating-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333333;
    margin-right: 0.25rem;
}

.rating-stars {
    display: flex;
    align-items: center;
}

.rating-stars img {
    width: 14px;
    height: 14px;
    margin-right: 1px;
}

.star-filled {
    fill: #FFB800;
    opacity: 1;
}

.star-half {
    fill: #FFB800;
    opacity: 0.5;
}

/* 菜单按钮 */
.reviews-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.reviews-menu-btn:hover {
    opacity: 1;
}

.menu-icon {
    width: 16px;
    height: 16px;
}

/* 评论文本 */
.reviews-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666666;
    margin: 0;
    margin-top: 20px;
    margin-bottom: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.top-ceckbox{
     max-width:550px;
     padding: 20px;
     background-color: #fff;
     font-family: 'Jost', sans-serif;
     height: 284px;
     position: relative;
     z-index: 9;
     border-radius: 8px;
}
.top-ceckbox-item{
    width: 100%;
    display: flex;
    border: 1px solid #E2E2E2;
    border-radius: 8px;
    
}
.browse{
    width: 50%;
    text-align: center;
    padding: 13px 0;
     font-weight: bold;
    border-radius: 8px;
    color: #62646A;
}
.browse.active {
    /* 活动tab的样式 */
   color: #10AA65;
    font-weight: bold;
    border: 2px solid #10AA65;
}
.task-tab-content {
    text-align: left;
    padding: 20px 0;
    color: #000;
    display: none; /* 默认隐藏所有内容区域 */
}
.task-tab-content a{
    text-align: center;
    display: inline-block;
    margin-top: 20px;
    padding: 14px 0;
    width: 160px;
    border-radius: 6px;
    background-color: #10AA65;
}
.task-tab-content .task-tab-a{
   margin-top: 40px;
}
/* 显示默认的内容区域 */
#tasks-browse {
    display: block;
}
.search-container-index{
    display: flex;
    margin: 20px 0;
    border-radius: 4px;
    overflow: hidden;
    border: 2px solid #10AA65;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
    max-width:450px;
    align-items: center;
    padding: 4px;
    box-sizing: border-box;
}

.search-input-index {
    flex: 1;
    padding: 15px 16px;
    /* border: 1px solid #e0e0e0; */
    border-right: none;
    font-size: 14px;
    outline: none;
    border: none;
    background-color: #f6f9f8;
    
}

.search-button {
    background-color: #10AA65;
    color: white;
    border: none;
    padding: 0 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    border-radius: 4px;
}

.search-button i {
    margin-right: 6px;
}

.search-button:hover {
    background-color: #27ae60;
}
.tab-controls{
    display: flex;
    gap: 10px;
}
.tab-for{
    padding: 10px 20px;
    border-radius: 4px;
    color: #62646A;
    border: 1px solid #E2E2E2;
    width: 200px;
    text-align: center;
    cursor: pointer;
}
.tab-for.active{
    color: #10AA65;
    border: 1px solid #10AA65;
}
.features-section {
    display: none;
}

.features-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}
.testimonial-container{
    position: relative;
}
.left-arrow{
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
    left: -60px;
}
.right-arrow{
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
    right: -60px;
}
.hero-text-title-phone{
    display: none;
}
.hero-text-title-phone-img{
    display: none;
    margin-top: 20px;
}
.hero-text p{
    color: #054D46;
}
.pice-phone{
    display: none;
    padding: 6px 10px;
    background-color: #10AA65;
    color: #fff;
    border-radius: 20px;
}

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
            }

            .hero-image {
                order: -1;
                margin-bottom: 2rem;
                text-align: center;
            }

            .hero p {
                margin-left: auto;
                margin-right: auto;
            }

            .about-content {
                flex-direction: column;
            }

            .about-image {
                margin-bottom: 2rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .stats-container {
                flex-wrap: wrap;
                row-gap: 1rem;
            }

            .stat-item {
                flex: 1 0 45%;
            }

            .about-stats {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {

            .section-title {
                font-size: 1.75rem;
            }

            .stats-container {
                flex-direction: column;
                align-items: flex-start;
            }

            .stat-item {
                width: 100%;
            }

            .about-stats {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
           .channel-imgs  {
                /* flex-wrap: wrap; */
                overflow: auto;
                gap: 20px;
                margin-bottom: 0px;
                margin-top: 20px;
                /* justify-content: flex-end; */
            }
            .jobs-container{
                grid-template-columns: repeat(1, 1fr);
            }
            .hero{
                /* display: none; */
                padding: 15px;
                height: auto;
                
            }
            .tab-controls{
                width: 100vw;
                justify-content: center;
            }
            .tab-for{
                width: 45%;
                font-size: 14px;

            }
            .testimonial-container{
                flex-wrap: nowrap;
                overflow: auto;
            }
            .talent-network-container{
                display: block;
            }
            .sub-heading{
                margin-bottom: 0px;
            }
            .card-easy-contant{
                width: 70vw;
                box-sizing: border-box;
            }
           .features-grid .feature-item{
                align-items: self-start;
            }
            .testimonial-card-easy{
                width: calc(80vw - 30px) !important;
            }
            .arrow-button{
                display: none;
            }
            .testimonial-card-easy{
                width: 100%;
            }
            .right-arrow{
                bottom: -20px !important;
                right: 20% !important;
            }
            .left-arrow{
                bottom: -20px !important;
                left: 20% !important;
            }
            .tab-content{
                margin-bottom: 0px;
            }
            .how-it-works{

            }
          
            .background-image{
               width: 100vw;
               height: 350px;
               margin-bottom: -10px;
            }
            .background-image-right{
                display: none;
            }
            .hero-image{
                display: none;
            }
            .maskgroup{
                display: none;
            }
            .hero-text{
                margin-top:20px ;
            }
            .hero-text p{
                text-align: left;
                font-size: 14px;
                padding: 0 15px;
            }
            .hero-text-title-phone-img{
                display: block;
            }
            .search-container-index{
                max-width: calc(100vw - 30px);
                margin: 20px auto;

            }
          
            .hero-text .hero-text-title-phone{
                display: block;
                font-size: 26px ;
                text-align: left;
                padding: 0 15px;
            }
            .hero-text-title-pc{
                display: none;
            }
            .content-wrapper{
                width: 100%;
                padding: 60px 20px;
            }
            .features-grid{
                grid-template-columns: 1fr;
            }
            .feature-card-great{
                display: block;
            }
            .image-column{
                width: 100%;
            }
            .image-column{
                height: 200px;
            }
            .testimonial-section{
                margin-bottom: 0;
            }
            .jobs-container,.filters,.testimonial-section,.about-us-container{
                padding: 15px;
            }
            .about-us-overlay{
                /* padding:43px 40px 72px; */
            }
            .feature-list{
                margin-top: 40px;
            }
           .content-column{
            padding: 45px 24px;
           }
           .job-description{
            width: 75%;
           }
           .profile-section{
            width: 130px;
           }
           .hero-buttons .btn{
            width: 46%;
           }
           .hero-buttons .btn:nth-child(2){
            margin-right: 0px;
           }
           .section-header{
                padding: 20px;
                text-align: left;
                margin-bottom: 0;
           }
            .section-header h2{
                font-size: 26px;
            }
            .job-listings{
                padding-top: 0;
            }
            .filters{
                flex-wrap: nowrap;
                overflow: auto;
                margin-bottom: 10px;
            }
            .filter-btn{
                color: #000;
                white-space: nowrap;
            }
            .jobs-buttons{
                margin-top: 20px;
            }
            .job-card{
                flex-direction: column-reverse;
                height: auto;
            }
            .profile-section{
                width: 100%;
                padding: 15px;
                position: relative;
            }
            .job-footer{
                position: relative;
            }
            .profile-section{
                flex-direction: row;
            }
            .pice-phone{
                display: block;
                position: absolute;
                right: 20px;
            }
            .pice-pc{
                display: none;
                
            }
            .top-ceckbox{
                height: 310px;
            }
        }
