.hero-section {
  position: relative;
  min-height: 600px;
  background: linear-gradient(180deg, #F0F3FF 0%, #FFFFFF 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 80px var(--content-padding) 60px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero-section {
    min-height: 500px;
    padding: 60px var(--content-padding) 40px;
  }
}
.hero-section .hero-content {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .hero-section .hero-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .hero-section .hero-content {
    gap: 30px;
  }
}
.hero-section .hero-left {
  flex: 1;
  max-width: 600px;
}
.hero-section .hero-right {
  flex: 1;
  position: relative;
}
@media (max-width: 1024px) {
  .hero-section .hero-right {
    flex: none;
    width: 100%;
    max-width: 400px;
  }
}
.hero-section .hero-text {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .hero-section .hero-text {
    margin-bottom: 32px;
  }
}
.hero-section .hero-title {
  font-family: Avenir, Avenir;
  font-weight: 800;
  font-size: 41px;
  color: #2A2A2A;
  line-height: 1.2;
  margin: 0 0 24px 0;
}
@media (max-width: 1024px) {
  .hero-section .hero-title {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .hero-section .hero-title {
    font-size: 28px;
    margin-bottom: 16px;
  }
}
@media (max-width: 480px) {
  .hero-section .hero-title {
    font-size: 24px;
  }
}
.hero-section .hero-search {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .hero-section .hero-search {
    margin-bottom: 30px;
  }
}
.hero-section .hero-search .search-form {
  width: 100%;
  max-width: 500px;
}
@media (max-width: 1024px) {
  .hero-section .hero-search .search-form {
    margin: 0 auto;
  }
}
.hero-section .hero-search .search-input-container {
  display: flex;
  background: white;
  border-radius: 50px;
  padding: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #E5E7EB;
  transition: border-color 0.3s ease;
}
.hero-section .hero-search .search-input-container:focus-within {
  border: 1px solid #353CF6;
}
.hero-section .hero-search .search-input-container .search-input-holder {
  flex: 1;
  position: relative;
}
.hero-section .hero-search .search-input-container .search-input-holder::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url('../images/shared/search.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
.hero-section .hero-search .search-input-container .search-input-holder .search-input {
  width: 100%;
  border: none;
  outline: none;
  padding: 12px 20px 12px 50px;
  font-size: 16px;
  background: transparent;
  color: #333;
}
.hero-section .hero-search .search-input-container .search-input-holder .search-input::placeholder {
  color: #9CA3AF;
}
.hero-section .hero-search .search-input-container .search-button {
  background: #4F46E5;
  color: white;
  border: none;
  border-radius: 40px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}
.hero-section .hero-search .search-input-container .search-button:hover {
  background: #4338CA;
}
@media (max-width: 480px) {
  .hero-section .hero-search .search-input-container .search-button {
    padding: 12px 16px;
    font-size: 14px;
  }
}
.hero-section .hero-map {
  margin-top: 30px;
  position: relative;
}
.hero-section .hero-map .map-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  opacity: 0.8;
}
.hero-section .hero-map .map-overlay-text {
  position: absolute;
  top: 30%;
  left: 5%;
  width: 95%;
  text-align: left;
  z-index: 2;
}
.hero-section .hero-map .map-overlay-text .hero-subtitle {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 767px) {
  .hero-section .hero-map .map-overlay-text .hero-subtitle {
    font-size: 16px;
    padding: 10px 16px;
  }
}
.hero-section .hero-map .map-overlay-text .hero-subtitle .highlight {
  color: #FF8C00;
  font-weight: bold;
}
.hero-section .business-blocks {
  position: relative;
  width: 100%;
  height: 400px;
}
@media (max-width: 1024px) {
  .hero-section .business-blocks {
    height: 300px;
  }
}
.hero-section .decorative-block {
  position: absolute;
  width: 72px;
  height: 72px;
}
.hero-section .decorative-block.block-light-1 {
  background: #E1E5FA;
  bottom: 0px;
  left: 180px;
  z-index: 0;
}
.hero-section .decorative-block.block-light-2 {
  background: #FFFFFF;
  bottom: 80px;
  left: 360px;
  z-index: 0;
}
.hero-section .decorative-block.block-light-3 {
  background: #FFFFFF;
  bottom: 360px;
  left: 604px;
  z-index: 0;
}
.hero-section .decorative-block.block-light-4 {
  background: #E1E5FA;
  bottom: -72px;
  left: 416px;
  z-index: 0;
}
@media (max-width: 1024px) {
  .hero-section .decorative-block .decorative-block {
    width: 60px;
    height: 60px;
  }
}
.hero-section .business-block {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
}
.hero-section .business-block .block-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}
.hero-section .business-block .block-text {
  line-height: 1.3;
}
.hero-section .business-block.block-online-store {
  background: #4F46E5;
  width: 180px;
  height: 180px;
  bottom: 0;
  left: 0;
  z-index: 3;
}
@media (max-width: 1024px) {
  .hero-section .business-block.block-online-store {
    width: 140px;
    height: 120px;
    font-size: 14px;
  }
  .hero-section .business-block.block-online-store .block-icon {
    width: 36px;
    height: 36px;
  }
}
.hero-section .business-block.block-saas {
  background: #F59E0B;
  width: 180px;
  height: 180px;
  bottom: 72px;
  left: 180px;
  z-index: 2;
}
@media (max-width: 1024px) {
  .hero-section .business-block.block-saas {
    width: 160px;
    height: 110px;
    bottom: 60px;
    left: 90px;
    font-size: 14px;
  }
  .hero-section .business-block.block-saas .block-icon {
    width: 36px;
    height: 36px;
  }
}
.hero-section .business-block.block-online-business {
  background: #1E40AF;
  width: 180px;
  height: 180px;
  bottom: 152px;
  left: 360px;
  z-index: 1;
}
@media (max-width: 1024px) {
  .hero-section .business-block.block-online-business {
    width: 130px;
    height: 140px;
    font-size: 14px;
  }
  .hero-section .business-block.block-online-business .block-icon {
    width: 36px;
    height: 36px;
  }
}
.hero-section .what-services-section {
  background: transparent;
  padding: 60px 0 0;
  margin-top: 60px;
}
.hero-section .what-services-section .services-header {
  text-align: center;
  margin-bottom: 30px;
}
.hero-section .what-services-section .services-title {
  font-family: Avenir, Avenir;
  font-weight: 800;
  font-size: 31px;
  color: #2A2A2A;
  line-height: 50px;
  margin: 0;
}
@media (max-width: 767px) {
  .hero-section .what-services-section .services-title {
    font-size: 28px;
  }
}
.hero-section .what-services-section .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .hero-section .what-services-section .services-grid {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .hero-section .what-services-section .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.hero-section .what-services-section .service-item {
  background: white;
  border: none;
  padding: 28px;
  text-align: left;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  border: 1px solid transparent;
}
.hero-section .what-services-section .service-item:hover {
  background: linear-gradient(180deg, #F0F3FF 0%, #F9FAFF 100%);
  box-shadow: 0px 2px 12px 0px rgba(130, 154, 205, 0.28);
  border: 1px solid #353CF6;
}
@media (max-width: 767px) {
  .hero-section .what-services-section .service-item {
    padding: 20px;
  }
}
.hero-section .what-services-section .service-number {
  font-family: Avenir, Avenir;
  font-weight: 900;
  font-size: 53px;
  color: #353CF6;
  line-height: 50px;
  margin-bottom: 20px;
}
.hero-section .what-services-section .service-content .service-header {
  display: flex;
  align-items: first baseline;
  justify-content: space-between;
  margin-bottom: 15px;
}
.hero-section .what-services-section .service-icon img {
  transform: translateY(1em);
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .hero-section .what-services-section .service-icon img {
    width: 32px;
    height: 32px;
  }
}
.hero-section .what-services-section .service-title {
  font-family: Avenir, Avenir;
  font-weight: 500;
  font-size: 31px;
  color: #2A2A2A;
  line-height: 50px;
  margin: 0;
  flex: 1;
}
@media (max-width: 767px) {
  .hero-section .what-services-section .service-title {
    font-size: 24px;
    line-height: 32px;
  }
}
.hero-section .what-services-section .service-description {
  font-family: Avenir, Avenir;
  font-weight: 500;
  font-size: 15px;
  color: #666666;
  line-height: 21px;
  text-align: left;
  margin: 0;
}
@media (max-width: 767px) {
  .hero-section .what-services-section .service-description {
    font-size: 14px;
    line-height: 20px;
  }
}
.browse-businesses-section {
  background: white;
}
.browse-businesses-section .browse-businesses-section-header {
  width: 100%;
  text-align: center;
  margin-bottom: 32px;
}
.browse-businesses-section .browse-businesses-section-header .section-title {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 8px 0;
}
@media (max-width: 767px) {
  .browse-businesses-section .browse-businesses-section-header .section-title {
    font-size: 28px;
  }
}
.browse-businesses-section .browse-businesses-section-header .section-subtitle {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 16px;
  color: #6B7280;
  margin: 0;
}
@media (max-width: 767px) {
  .browse-businesses-section .browse-businesses-section-header .section-subtitle {
    font-size: 14px;
  }
}
.browse-businesses-section .filter-bar {
  height: 90px;
  background: linear-gradient(180deg, #F0F3FF 0%, #F0F3FF 100%);
  display: flex;
  align-items: center;
}
.browse-businesses-section .filter-bar .filter-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
@media (max-width: 1024px) {
  .browse-businesses-section .filter-bar .filter-container {
    gap: 20px;
    text-align: center;
  }
}
.browse-businesses-section .filter-bar .filter-right {
  width: 100%;
  display: flex;
}
.browse-businesses-section .filter-bar .filter-right .filter-dropdowns {
  display: flex;
  gap: 16px;
}
@media (max-width: 767px) {
  .browse-businesses-section .filter-bar .filter-right .filter-dropdowns {
    width: 100%;
    gap: 12px;
  }
}
.browse-businesses-section .filter-bar .filter-right .custom-dropdown {
  position: relative;
  width: 200px;
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .browse-businesses-section .filter-bar .filter-right .custom-dropdown {
    width: auto;
    flex: 1;
  }
}
.browse-businesses-section .filter-bar .filter-right .custom-dropdown:hover {
  border-color: #3B82F6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.browse-businesses-section .filter-bar .filter-right .custom-dropdown.active {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.browse-businesses-section .filter-bar .filter-right .custom-dropdown.active .dropdown-trigger .dropdown-arrow {
  transform: rotate(180deg);
  color: #3B82F6;
}
.browse-businesses-section .filter-bar .filter-right .custom-dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.browse-businesses-section .filter-bar .filter-right .custom-dropdown .dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 14px;
  color: #374151;
  height: 48px;
  box-sizing: border-box;
}
.browse-businesses-section .filter-bar .filter-right .custom-dropdown .dropdown-trigger .dropdown-text {
  font-weight: 500;
}
.browse-businesses-section .filter-bar .filter-right .custom-dropdown .dropdown-trigger .dropdown-arrow {
  color: #9CA3AF;
  transition: all 0.3s ease;
  font-size: 12px;
}
.browse-businesses-section .filter-bar .filter-right .custom-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-top: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  max-height: 200px;
  overflow-y: auto;
}
.browse-businesses-section .filter-bar .filter-right .custom-dropdown .dropdown-menu .dropdown-item {
  padding: 12px 16px;
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 14px;
  color: #374151;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid #F3F4F6;
}
.browse-businesses-section .filter-bar .filter-right .custom-dropdown .dropdown-menu .dropdown-item:last-child {
  border-bottom: none;
}
.browse-businesses-section .filter-bar .filter-right .custom-dropdown .dropdown-menu .dropdown-item:hover {
  background: #F8FAFC;
  color: #3B82F6;
}
.browse-businesses-section .filter-bar .filter-right .custom-dropdown .dropdown-menu .dropdown-item.active {
  background: #EEF2FF;
  color: #3B82F6;
  font-weight: 500;
}
.browse-businesses-section .business-listings {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.browse-businesses-section .business-listing {
  background: white;
  border: 1px solid #E5E7EB;
  padding: 24px;
  display: flex;
  gap: 24px;
  transition: all 0.3s ease;
  background: #FFFFFF;
  box-shadow: 0px 2px 12px 0px rgba(130, 154, 205, 0.28);
  border: 1px solid #CDCEE4;
}
@media (max-width: 1024px) {
  .browse-businesses-section .business-listing {
    flex-direction: column;
    gap: 16px;
  }
}
.browse-businesses-section .business-listing:hover {
  background: linear-gradient(180deg, #F0F3FF 0%, #F9FAFF 100%);
  box-shadow: 0px 2px 12px 0px rgba(130, 154, 205, 0.28);
  border-color: #3B82F6;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
}
.browse-businesses-section .business-listing .listing-image {
  flex-shrink: 0;
  width: 200px;
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .browse-businesses-section .business-listing .listing-image {
    width: 100%;
    height: 200px;
  }
}
.browse-businesses-section .business-listing .listing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.browse-businesses-section .business-listing .listing-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.browse-businesses-section .business-listing .listing-title {
  font-family: Avenir, Avenir;
  font-weight: 800;
  font-size: 21px;
  color: #353CF6;
  line-height: 29px;
}
.browse-businesses-section .business-listing .listing-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: Avenir, Avenir;
  font-weight: 500;
  font-size: 15px;
  color: #2A2A2A;
  line-height: 20px;
}
.browse-businesses-section .business-listing .listing-location .location-icon {
  font-size: 12px;
}
.browse-businesses-section .business-listing .listing-main-content {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .browse-businesses-section .business-listing .listing-main-content {
    flex-direction: column;
    gap: 16px;
  }
}
.browse-businesses-section .business-listing .listing-description {
  flex: 1;
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 14px;
  color: #6B7280;
  line-height: 1.5;
  margin: 0;
}
.browse-businesses-section .business-listing .listing-price {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}
@media (max-width: 1024px) {
  .browse-businesses-section .business-listing .listing-price {
    text-align: left;
  }
}
.browse-businesses-section .business-listing .listing-price .price-label {
  font-family: AlibabaPuHuiTiR;
  font-size: 15px;
  color: #132241;
  line-height: 21px;
}
.browse-businesses-section .business-listing .listing-price .price-value {
  font-family: Avenir, Avenir;
  font-weight: 800;
  font-size: 29px;
  color: #132241;
  line-height: 40px;
}
.browse-businesses-section .business-listing .listing-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-top: auto;
}
@media (max-width: 1024px) {
  .browse-businesses-section .business-listing .listing-bottom {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}
.browse-businesses-section .business-listing .listing-stats {
  flex: 1;
}
.browse-businesses-section .business-listing .listing-stats .stat-group {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 767px) {
  .browse-businesses-section .business-listing .listing-stats .stat-group {
    gap: 16px;
  }
}
.browse-businesses-section .business-listing .listing-stats .stat-group .stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.browse-businesses-section .business-listing .listing-stats .stat-group .stat-item .stat-label {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 12px;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.browse-businesses-section .business-listing .listing-stats .stat-group .stat-item .stat-value {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1F2937;
}
.browse-businesses-section .business-listing .listing-actions {
  flex-shrink: 0;
  display: flex;
  gap: 12px;
}
@media (max-width: 1024px) {
  .browse-businesses-section .business-listing .listing-actions {
    justify-content: center;
  }
}
.browse-businesses-section .business-listing .listing-actions .btn-unlock {
  background: #F97316;
  color: white;
  border: none;
  border-radius: 24px;
  padding: 12px 20px;
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.browse-businesses-section .business-listing .listing-actions .btn-unlock:hover {
  background: #EA580C;
}
.browse-businesses-section .business-listing .listing-actions .btn-view {
  background: #3B82F6;
  color: white;
  border: none;
  border-radius: 24px;
  padding: 12px 20px;
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.browse-businesses-section .business-listing .listing-actions .btn-view:hover {
  background: #2563EB;
}
.trusted-brands-section {
  background: white;
  padding: 60px 0;
  position: relative;
}
.trusted-brands-section .brands-header {
  text-align: center;
  margin-bottom: 40px;
}
.trusted-brands-section .brands-header .brands-title {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #1F2937;
  margin: 0;
}
@media (max-width: 767px) {
  .trusted-brands-section .brands-header .brands-title {
    font-size: 24px;
  }
}
.trusted-brands-section .brands-swiper-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.trusted-brands-section .brands-swiper-container .brands-swiper {
  overflow: hidden;
}
.trusted-brands-section .brands-swiper-container .brands-swiper .swiper-wrapper {
  display: flex;
  align-items: center;
}
.trusted-brands-section .brands-swiper-container .brands-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
}
.trusted-brands-section .brands-swiper-container .brands-swiper .swiper-slide .brand-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  opacity: 0.7;
  transition: all 0.3s ease;
}
.trusted-brands-section .brands-swiper-container .brands-swiper .swiper-slide .brand-item:hover {
  opacity: 1;
  transform: scale(1.05);
}
.trusted-brands-section .brands-swiper-container .brands-swiper .swiper-slide .brand-item img {
  max-height: 100%;
  max-width: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .trusted-brands-section .brands-swiper-container .brands-swiper .swiper-slide .brand-item img {
    max-width: 100px;
  }
}
.trusted-brands-section .brands-swiper-container .brands-swiper .swiper-slide .brand-item:hover img {
  filter: grayscale(0%);
}
.trusted-brands-section .brands-swiper-container .brands-swiper .swiper-pagination {
  position: relative;
  margin-top: 30px;
}
.trusted-brands-section .brands-swiper-container .brands-swiper .swiper-pagination .swiper-pagination-bullet {
  background: #E1E5FA;
  opacity: 1;
  width: 6px;
  height: 6px;
  margin: 0 4px;
  transition: all 0.3s ease;
}
.trusted-brands-section .brands-swiper-container .brands-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #2B3DB2;
}
.trusted-brands-section .brands-swiper-container .brands-swiper .swiper-button-next,
.trusted-brands-section .brands-swiper-container .brands-swiper .swiper-button-prev {
  color: #3B82F6;
}
.trusted-brands-section .brands-swiper-container .brands-swiper .swiper-button-next:after,
.trusted-brands-section .brands-swiper-container .brands-swiper .swiper-button-prev:after {
  font-size: 20px;
}
@media (max-width: 767px) {
  .trusted-brands-section .brands-swiper-container .brands-swiper .swiper-button-next,
  .trusted-brands-section .brands-swiper-container .brands-swiper .swiper-button-prev {
    display: none;
  }
}
.service-section {
  background: white;
  padding: 72px 0;
}
.service-section .service-header {
  margin-bottom: 24px;
}
.service-section .service-title {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 32px;
  font-weight: bold;
  color: #03256C;
  margin: 0;
}
@media (max-width: 767px) {
  .service-section .service-title {
    font-size: 28px;
  }
}
.service-section .service-filters {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .service-section .service-filters {
    flex-direction: column;
    gap: 12px;
  }
}
.service-section .filter-dropdown {
  display: none;
}
.service-section .service-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.service-section .service-card {
  padding: 16px;
  background: #FFFFFF;
  border: 1px solid #979797;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
}
.service-section .service-card:hover {
  background: #F7F8F9;
  border: 1px solid #353CF6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .service-section .service-card {
    flex-direction: column;
  }
}
.service-section .card-image {
  border-radius: 8px;
  aspect-ratio: 314 / 176;
  width: 314px;
  flex-shrink: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .service-section .card-image {
    width: 100%;
    height: 100px;
  }
}
.service-section .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-section .card-content {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-section .card-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.service-section .card-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.service-section .card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.service-section .card-title {
  font-size: 18px;
  font-weight: bold;
  color: #03256C;
  margin: 0;
  line-height: 1.3;
}
.service-section .card-description {
  font-size: 15px;
  color: #64748B;
  line-height: 1.5;
  margin: 0 0 20px 0;
}
.service-section .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}
@media (max-width: 480px) {
  .service-section .card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.service-section .card-meta {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .service-section .card-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.service-section .meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-section .meta-label {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 14px;
  color: #374151;
  font-weight: 500;
}
.service-section .meta-label::after {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #374151;
  border-radius: 50%;
  margin-left: 8px;
  vertical-align: middle;
}
.service-section .meta-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.service-section .tag {
  background: transparent;
  color: #353CF6;
  padding: 0;
  border-radius: 0;
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 14px;
  font-weight: 400;
}
.service-section .tag:not(:last-child)::after {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #353CF6;
  border-radius: 50%;
  margin-left: 8px;
  vertical-align: middle;
}
.service-section .meta-value {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 14px;
  color: #2563EB;
  font-weight: 500;
}
.service-section .view-button {
  background: #353CF6;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 12px 24px;
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.service-section .view-button:hover {
  background: #1D4ED8;
}
@media (max-width: 480px) {
  .service-section .view-button {
    align-self: flex-end;
  }
}
.service-section .service-footer {
  text-align: center;
}
.service-section .see-more-button {
  background: transparent;
  color: #353CF6;
  border: none;
  font-size: 21px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-section .see-more-button:hover {
  color: #1D4ED8;
}
.service-section .see-more-button:hover .arrow {
  transform: translateX(4px);
}
.service-section .see-more-button .arrow {
  transition: transform 0.3s ease;
}
.news-section {
  background: #fff;
  padding: 80px 0 60px;
}
.news-section .content-part {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.news-section .news-header {
  text-align: center;
  margin-bottom: 40px;
}
.news-section .news-header .news-title {
  font-family: 'Avenir', 'Alibaba-PuHuiTi', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #232323;
  margin-bottom: 8px;
}
.news-section .news-header .news-subtitle {
  font-size: 15px;
  color: #6B7280;
  font-family: 'Avenir', 'Alibaba-PuHuiTi', sans-serif;
}
.news-section .news-grid {
  display: grid;
  grid-template-columns: 2fr 2fr 1.5fr;
  gap: 32px;
}
@media (max-width: 900px) {
  .news-section .news-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.news-section .news-card {
  background: #fff;
  border: 1px solid transparent;
  box-shadow: 0px 2px 12px 0px rgba(130, 154, 205, 0.28);
  padding: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  min-height: 340px;
  position: relative;
}
.news-section .news-card:hover {
  background: linear-gradient(180deg, #F0F3FF 0%, #FFFFFF 100%);
  box-shadow: 0px 2px 12px 0px rgba(130, 154, 205, 0.28);
  border: 1px solid #353CF6;
  z-index: 2;
}
.news-section .news-card .news-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
}
.news-section .news-card .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-section .news-card .news-content {
  padding: 20px 20px 0 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-section .news-card .news-content .news-desc {
  font-size: 16px;
  color: #232323;
  font-family: 'Avenir', 'Alibaba-PuHuiTi', sans-serif;
  margin-bottom: 18px;
  font-weight: 500;
}
.news-section .news-card .news-content .news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.news-section .news-card .news-content .news-meta .news-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}
.news-section .news-card .news-content .news-meta .news-country {
  font-size: 15px;
  color: #353CF6;
  font-weight: 600;
}
.news-section .news-card .news-content .news-meta .news-tag {
  color: #353CF6;
  border: 1px solid #353CF6;
  font-size: 13px;
  padding: 2px 10px;
  font-weight: 500;
}
.news-section .news-card .news-link {
  border-top: 1px solid #E5E7EB;
  padding-top: 20px;
  display: flex;
  justify-content: center;
  text-align: center;
  color: #353CF6;
  font-weight: 700;
  font-size: 17px;
  width: 100%;
  text-decoration: none;
  transition: color 0.2s;
}
.news-section .news-card .news-link:hover {
  color: #1E40AF;
}
.news-section .news-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.news-section .news-list .news-list-card {
  background: #fff;
  border: 1px solid transparent;
  box-shadow: 0px 2px 12px 0px rgba(130, 154, 205, 0.28);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.news-section .news-list .news-list-card:hover {
  background: linear-gradient(180deg, #F0F3FF 0%, #FFFFFF 100%);
  box-shadow: 0px 2px 12px 0px rgba(130, 154, 205, 0.28);
  border: 1px solid #353CF6;
  z-index: 2;
}
.news-section .news-list .news-list-card .news-list-tag {
  color: #353CF6;
  font-size: 13px;
  border: 1px solid #353CF6;
  padding: 2px 10px;
  font-weight: 500;
  margin-bottom: 8px;
  margin-right: auto;
  display: inline-block;
}
.news-section .news-list .news-list-card .news-list-desc {
  font-size: 15px;
  color: #232323;
  font-family: 'Avenir', 'Alibaba-PuHuiTi', sans-serif;
  margin-bottom: 10px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-section .news-list .news-list-card .news-list-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.news-section .news-list .news-list-card .news-list-meta .news-list-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}
.news-section .news-list .news-list-card .news-list-meta .news-list-author {
  font-size: 15px;
  color: #353CF6;
  font-weight: 700;
}
.news-section .news-footer {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.news-section .news-footer .read-more-button {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  height: 60px;
  background: #353CF6;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
  border: none;
  cursor: pointer;
  box-shadow: 0px 2px 12px 0px rgba(130, 154, 205, 0.1);
  transition: background 0.2s;
}
.news-section .news-footer .read-more-button:hover {
  background: #1E40AF;
}
.team-section {
  background: #FFFFFF;
  padding: 72px 0;
}
.team-section .team-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  gap: 48px;
}
@media (max-width: 1024px) {
  .team-section .team-header {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
  }
}
.team-section .team-header .team-title {
  font-size: 41px;
  color: #03256C;
  line-height: 56px;
  font-weight: 800;
  margin: 0;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .team-section .team-header .team-title {
    font-size: 28px;
  }
}
.team-section .team-header .team-description {
  font-size: 17px;
  color: #132241;
  line-height: 28px;
  margin: 0;
  max-width: 640px;
}
@media (max-width: 767px) {
  .team-section .team-header .team-description {
    font-size: 14px;
    line-height: 22px;
  }
}
.team-section .team-container {
  position: relative;
}
.team-section .team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px 32px;
  margin-bottom: 60px;
}
@media (max-width: 1200px) {
  .team-section .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .team-section .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 80px;
  }
}
@media (max-width: 480px) {
  .team-section .team-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 60px;
  }
}
.team-section .team-card {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 20px 28px 44px 43px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #E5E7EB;
  position: relative;
  overflow: visible;
}
.team-section .team-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: #03256C;
  z-index: 10;
}
.team-section .team-card:hover .team-details {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.team-section .team-card .team-avatar {
  aspect-ratio: 1 / 1;
  width: 80%;
  height: auto;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #F3F4F6;
}
.team-section .team-card .team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-section .team-card .team-info {
  position: static;
}
.team-section .team-card .team-info .team-name {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #03256C;
  line-height: 1.3;
  text-align: left;
}
@media (max-width: 767px) {
  .team-section .team-card .team-info .team-name {
    font-size: 16px;
  }
}
.team-section .team-card .team-info .team-role {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 14px;
  color: #6B7280;
  font-weight: 500;
  position: absolute;
  top: 16px;
  right: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 767px) {
  .team-section .team-card .team-info .team-role {
    font-size: 12px;
    top: -36px;
    right: -20px;
  }
}
.team-section .team-card .team-details {
  position: absolute;
  top: calc(100% - 28px);
  left: -1px;
  right: -1px;
  background: #FFFFFF;
  border: 1px solid #03256C;
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 0 28px 24px 43px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.3s ease;
  z-index: 10;
}
.team-section .team-card .team-details .detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 12px;
  color: #6B7280;
}
.team-section .team-card .team-details .detail-item:last-child {
  margin-bottom: 0;
}
.team-section .team-card .team-details .detail-item img {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.team-section .team-card .team-details .detail-item span {
  line-height: 1.4;
}
.team-section .team-footer {
  text-align: right;
  margin-top: 48px;
}
@media (max-width: 767px) {
  .team-section .team-footer {
    text-align: center;
    margin-top: 32px;
  }
}
.team-section .team-footer .see-more-button {
  background: transparent;
  color: #2563EB;
  border: none;
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.team-section .team-footer .see-more-button:hover {
  color: #1D4ED8;
}
.team-section .team-footer .see-more-button:hover .arrow {
  transform: translateX(4px);
}
.team-section .team-footer .see-more-button .arrow {
  transition: transform 0.3s ease;
}
.hero-contact {
  display: flex;
  align-items: center;
  margin-top: 3rem;
  justify-content: center;
}
.hero-contact .contact-icon {
  width: 60px;
  height: 60px;
  background: #241ce8;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .hero-contact .contact-icon {
    margin-top: 2rem;
    align-self: center;
  }
}
.insights-section {
  background: #241ce8;
  padding: 4rem 0;
  color: white;
}
.insights-section .section-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 28px;
}
.insights-section .section-header .section-title {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 1.5625rem;
  font-weight: 400;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.insights-section .section-header .insights-language-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 0.875rem;
}
.insights-section .section-header .insights-language-switcher .insights-lang-current {
  color: white;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 2px;
  border: 1px solid white;
  background: rgba(255, 255, 255, 0.1);
}
.insights-section .section-header .insights-language-switcher .insights-lang-divider {
  color: rgba(255, 255, 255, 0.5);
}
.insights-section .section-header .insights-language-switcher .insights-lang-option {
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 4px 8px;
}
.insights-section .section-header .insights-language-switcher .insights-lang-option:hover {
  color: white;
}
.insights-section .insights-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (max-width: 1024px) {
  .insights-section .insights-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .insights-section .insights-cards-grid {
    grid-template-columns: 1fr;
  }
}
.insights-section .insight-card {
  border-radius: 8px;
  border: 1px solid #ffffff;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 2rem;
}
.insights-section .insight-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.insights-section .insight-card:first-child,
.insights-section .insight-card:last-child {
  background: #241ce8;
  color: white;
}
.insights-section .insight-card:first-child .card-category,
.insights-section .insight-card:last-child .card-category {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 19px;
  color: white;
  margin-bottom: 24px;
}
.insights-section .insight-card:first-child .card-content,
.insights-section .insight-card:last-child .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.insights-section .insight-card:first-child .card-content .card-title,
.insights-section .insight-card:last-child .card-content .card-title {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 1.8125rem;
  font-weight: 400;
  line-height: 1.4;
  color: white;
  margin-bottom: 2rem;
}
.insights-section .insight-card:first-child .card-content .card-actions,
.insights-section .insight-card:last-child .card-content .card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.insights-section .insight-card:first-child .card-content .card-actions .see-update,
.insights-section .insight-card:last-child .card-content .card-actions .see-update {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 0.9375rem;
  color: white;
  opacity: 0.9;
}
.insights-section .insight-card:first-child .card-content .card-actions .arrow-icon,
.insights-section .insight-card:last-child .card-content .card-actions .arrow-icon {
  width: 20px;
  height: 20px;
  transition: opacity 0.3s ease;
}
.insights-section .insight-card:first-child .card-content .card-actions:hover .arrow-icon,
.insights-section .insight-card:last-child .card-content .card-actions:hover .arrow-icon {
  opacity: 0.8;
}
.insights-section .insight-card:first-child .card-content .card-actions svg,
.insights-section .insight-card:last-child .card-content .card-actions svg {
  display: none;
}
.insights-section .insight-card:nth-child(2) {
  background: white;
  color: #241ce8;
  padding: 2rem;
}
.insights-section .insight-card:nth-child(2) .card-category {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 1.1875rem;
  color: #241ce8;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}
.insights-section .insight-card:nth-child(2) .card-image {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border-radius: 4px;
}
.insights-section .insight-card:nth-child(2) .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}
.insights-section .insight-card:nth-child(2) .card-image .image-title {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 2;
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 1.8125rem;
  font-weight: 400;
  line-height: 1.4;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.insights-section .insight-card:nth-child(2) .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.insights-section .insight-card:nth-child(2) .card-content .card-title {
  display: none;
}
.insights-section .insight-card:nth-child(2) .card-content .card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.insights-section .insight-card:nth-child(2) .card-content .card-actions .see-update {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 15px;
  color: #241ce8;
  font-weight: 500;
}
.insights-section .insight-card:nth-child(2) .card-content .card-actions .arrow-icon {
  width: 20px;
  height: 20px;
  transition: opacity 0.3s ease;
}
.insights-section .insight-card:nth-child(2) .card-content .card-actions:hover .arrow-icon {
  opacity: 0.8;
}
.insights-section .insight-card:nth-child(2) .card-content .card-actions svg {
  display: none;
}
.insights-section .news-list-section .news-list-title {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 25px;
  font-weight: 400;
  padding-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.insights-section .news-list-section .news-list {
  margin-bottom: 3rem;
}
.insights-section .news-list-section .news-item {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  gap: 1rem;
  min-height: 80px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.insights-section .news-list-section .news-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}
.insights-section .news-list-section .news-item .news-image {
  max-width: 143px;
  max-height: 85px;
  flex-shrink: 0;
  overflow: hidden;
}
.insights-section .news-list-section .news-item .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.insights-section .news-list-section .news-item .news-content {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.insights-section .news-list-section .news-item .news-content .news-title {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: white;
  flex: 1;
}
.insights-section .news-list-section .news-item .news-content .news-action {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .insights-section .news-list-section .news-item .news-content .news-action {
    display: none;
  }
}
.insights-section .news-list-section .news-item .news-content .news-action:hover {
  opacity: 0.8;
}
.insights-section .news-list-section .news-item .news-content .news-action .read-story-text {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 0.875rem;
  color: white;
  white-space: nowrap;
}
.insights-section .news-list-section .news-item .news-content .news-action .arrow-icon {
  width: 16px;
  height: 16px;
}
.insights-section .news-list-section .news-item.no-image .news-content {
  margin-left: 0;
}
.insights-section .news-list-section .read-more {
  text-align: center;
}
.insights-section .news-list-section .read-more .read-more-btn {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  background: transparent;
  color: white;
  padding: 0.75rem 2rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.insights-section .news-list-section .read-more .read-more-btn:hover {
  background: white;
  color: #241ce8;
}
.customer-case-section {
  background: #F7F8F9;
  padding: 80px 0;
}
.customer-case-section .case-container {
  display: flex;
  align-items: center;
  gap: 80px;
  min-height: 500px;
}
.customer-case-section .case-content {
  flex: 1;
  max-width: 500px;
}
.customer-case-section .case-content .case-title {
  font-size: 41px;
  color: #03256C;
  line-height: 56px;
  margin-bottom: 40px;
  font-weight: 800;
}
.customer-case-section .case-content .case-subtitle {
  font-size: 25px;
  color: #03256C;
  line-height: 44px;
  margin-bottom: 67px;
  font-weight: bold;
}
.customer-case-section .case-content .case-description {
  font-size: 15px;
  color: #132241;
  line-height: 21px;
  margin-bottom: 68px;
}
.customer-case-section .case-content .registration-query-button {
  background: #fff;
  border: 2px solid #03256C;
  padding: 12px 32px;
  border-radius: 24px;
  font-size: 17px;
  color: #03256C;
  line-height: 23px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.customer-case-section .case-content .registration-query-button:hover {
  background: #03256C;
  color: #fff;
}
.customer-case-section .case-image {
  flex: 1;
  text-align: center;
}
.customer-case-section .case-image img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .customer-case-section {
    padding: 60px 0;
  }
  .customer-case-section .case-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  .customer-case-section .case-content {
    max-width: 100%;
  }
  .customer-case-section .case-content .case-title {
    font-size: 36px;
  }
  .customer-case-section .case-content .case-subtitle {
    font-size: 20px;
  }
  .customer-case-section .case-content .case-highlight {
    font-size: 18px;
  }
}
.get-your-section {
  background: #03256C;
  padding: 49px 0 60px;
}
.get-your-section .get-your-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
@media (max-width: 767px) {
  .get-your-section .get-your-container {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }
}
.get-your-section .get-your-content {
  flex: 1;
}
.get-your-section .get-your-content .get-your-title {
  font-size: 31px;
  color: #FFFFFF;
  line-height: 43px;
  font-weight: bold;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .get-your-section .get-your-content .get-your-title {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .get-your-section .get-your-content .get-your-title {
    font-size: 28px;
  }
}
.get-your-section .get-your-content .get-your-title .trademark-today {
  color: #353CF6;
}
.get-your-section .get-your-content .get-your-description {
  font-size: 17px;
  color: #FFFFFF;
  line-height: 24px;
  margin: 0;
}
@media (max-width: 767px) {
  .get-your-section .get-your-content .get-your-description {
    font-size: 16px;
  }
}
.get-your-section .get-your-action {
  flex-shrink: 0;
}
.get-your-section .get-your-action .registration-query-btn {
  background: #353CF6;
  border: 2px solid #353CF6;
  padding: 20px 26px;
  font-size: 17px;
  color: #FFFFFF;
  line-height: 23px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.get-your-section .get-your-action .registration-query-btn:hover {
  background: white;
  color: #353CF6;
  border-color: #353CF6;
}
@media (max-width: 767px) {
  .get-your-section .get-your-action .registration-query-btn {
    padding: 14px 28px;
    font-size: 14px;
  }
}
.customer-reviews-section {
  background: #F0F3FF;
  padding: 80px 0;
}
.customer-reviews-section .content-part {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.customer-reviews-section .reviews-swiper-container {
  width: 100%;
}
.customer-reviews-section .reviews-swiper-container .reviews-swiper {
  overflow: visible;
}
.customer-reviews-section .reviews-swiper-container .reviews-swiper .swiper-wrapper {
  display: flex;
  align-items: center;
}
.customer-reviews-section .reviews-swiper-container .reviews-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.customer-reviews-section .reviews-swiper-container .reviews-swiper .swiper-pagination {
  position: relative;
  margin-top: 32px;
  text-align: left;
}
.customer-reviews-section .reviews-swiper-container .reviews-swiper .swiper-pagination .swiper-pagination-bullet {
  background: #D1D5DB;
  opacity: 1;
  width: 8px;
  height: 8px;
  margin: 0 4px;
  transition: all 0.3s ease;
}
.customer-reviews-section .reviews-swiper-container .reviews-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #353CF6;
  transform: scale(1.2);
}
.customer-reviews-section .review-card {
  display: flex;
  background: transparent;
  border-radius: 24px;
  box-shadow: none;
  width: 100%;
  min-height: 320px;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .customer-reviews-section .review-card {
    flex-direction: column;
    padding: 0 10px;
    min-height: 400px;
  }
}
.customer-reviews-section .review-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 0;
  width: 55%;
}
@media (max-width: 900px) {
  .customer-reviews-section .review-left {
    align-items: center;
    text-align: center;
    margin-bottom: 32px;
  }
}
.customer-reviews-section .review-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  padding: 15px 46px;
  background: #FFFFFF;
}
.customer-reviews-section .review-header .review-logo {
  font-family: 'Avenir', 'Alibaba-PuHuiTi', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #232323;
}
.customer-reviews-section .review-header .review-logo .review-logo-sub {
  font-weight: 400;
  color: #6B7280;
  font-size: 22px;
  margin-left: 6px;
}
.customer-reviews-section .review-header .review-logo-desc {
  font-size: 15px;
  color: #6B7280;
  font-family: 'Avenir', 'Alibaba-PuHuiTi', sans-serif;
  margin-left: 24px;
}
.customer-reviews-section .review-body {
  padding: 46px;
  display: flex;
  flex-direction: column;
  gap: 42px;
}
.customer-reviews-section .review-stars img {
  height: 48px;
  width: auto;
}
.customer-reviews-section .review-text {
  font-family: Avenir, Avenir;
  font-weight: 500;
  font-size: 25px;
  line-height: 34px;
  margin-bottom: 32px;
}
.customer-reviews-section .review-text .review-link {
  color: #353CF6;
  text-decoration: underline;
  font-weight: 600;
}
.customer-reviews-section .review-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
@media (max-width: 900px) {
  .customer-reviews-section .review-right {
    margin-top: 0;
  }
}
.customer-reviews-section .review-right .review-user {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.customer-reviews-section .review-right .review-user .review-avatar {
  width: 248px;
  height: 248px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(130, 154, 205, 0.18);
  background: #fff;
  border: 3px solid #fff;
  z-index: 1;
}
.customer-reviews-section .review-right .review-user .review-brand {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(130, 154, 205, 0.1);
  padding: 10px;
  margin-left: -8px;
}
.customer-reviews-section .review-right .review-user .review-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.customer-reviews-section .review-right .review-user-info {
  margin-left: 49px;
}
.customer-reviews-section .review-right .review-user-info .review-user-name {
  font-family: 'Avenir', 'Alibaba-PuHuiTi', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #232323;
  margin-bottom: 6px;
}
.customer-reviews-section .review-right .review-user-info .review-user-title {
  font-family: 'Avenir', 'Alibaba-PuHuiTi', sans-serif;
  font-size: 15px;
  color: #6B7280;
  font-weight: 400;
  max-width: 70%;
}
