.about-hero-section {
  background: #F7F8F9;
  padding: 48px 0 72px 0;
}
.about-hero-section .about-hero-container .about-hero-content {
  display: flex;
  gap: 60px;
  align-items: center;
}
@media (max-width: 1024px) {
  .about-hero-section .about-hero-container .about-hero-content {
    flex-direction: column;
    gap: 48px;
    text-align: center;
  }
}
.about-hero-section .about-hero-container .hero-image {
  flex: 1;
}
.about-hero-section .about-hero-container .hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}
.about-hero-section .about-hero-container .hero-text {
  flex: 1;
  max-width: 600px;
}
.about-hero-section .about-hero-container .hero-text .hero-title {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #03256C;
  margin-bottom: 16px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .about-hero-section .about-hero-container .hero-text .hero-title {
    font-size: 20px;
  }
}
.about-hero-section .about-hero-container .hero-text .hero-subtitle {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #03256C;
  line-height: 1.2;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .about-hero-section .about-hero-container .hero-text .hero-subtitle {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .about-hero-section .about-hero-container .hero-text .hero-subtitle {
    font-size: 28px;
  }
}
.about-hero-section .about-hero-container .hero-text .hero-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-hero-section .about-hero-container .hero-text .hero-features .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .about-hero-section .about-hero-container .hero-text .hero-features .feature-item {
    justify-content: center;
  }
}
.about-hero-section .about-hero-container .hero-text .hero-features .feature-item .feature-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.about-hero-section .about-hero-container .hero-text .hero-features .feature-item .feature-text {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #374151;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .about-hero-section .about-hero-container .hero-text .hero-features .feature-item .feature-text {
    font-size: 14px;
  }
}
.professional-team-section {
  background: #FFFFFF;
  padding: 72px 0 32px;
}
.professional-team-section .team-section-header {
  text-align: center;
  margin-bottom: 64px;
}
.professional-team-section .team-section-header .section-title {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #03256C;
  line-height: 1.2;
  margin: 0;
}
@media (max-width: 767px) {
  .professional-team-section .team-section-header .section-title {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .professional-team-section .team-section-header .section-title {
    font-size: 28px;
  }
}
.professional-team-section .team-container .team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px 32px;
  margin-bottom: 60px;
}
@media (max-width: 1200px) {
  .professional-team-section .team-container .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .professional-team-section .team-container .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 80px;
  }
}
@media (max-width: 480px) {
  .professional-team-section .team-container .team-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 60px;
  }
}
.professional-team-section .team-container .team-grid .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;
}
.professional-team-section .team-container .team-grid .team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: #03256C;
  z-index: 10;
}
.professional-team-section .team-container .team-grid .team-card:hover .team-details {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.professional-team-section .team-container .team-grid .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;
}
.professional-team-section .team-container .team-grid .team-card .team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.professional-team-section .team-container .team-grid .team-card .team-info {
  position: static;
}
.professional-team-section .team-container .team-grid .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) {
  .professional-team-section .team-container .team-grid .team-card .team-info .team-name {
    font-size: 16px;
  }
}
.professional-team-section .team-container .team-grid .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) {
  .professional-team-section .team-container .team-grid .team-card .team-info .team-role {
    font-size: 12px;
    top: -36px;
    right: -20px;
  }
}
.professional-team-section .team-container .team-grid .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;
}
.professional-team-section .team-container .team-grid .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;
}
.professional-team-section .team-container .team-grid .team-card .team-details .detail-item:last-child {
  margin-bottom: 0;
}
.professional-team-section .team-container .team-grid .team-card .team-details .detail-item img {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.professional-team-section .team-container .team-grid .team-card .team-details .detail-item span {
  line-height: 1.4;
}
.professional-team-section .team-container .team-footer {
  text-align: center;
}
.professional-team-section .team-container .team-footer .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;
}
.professional-team-section .team-container .team-footer .see-more-button:hover {
  color: #1D4ED8;
}
.professional-team-section .team-container .team-footer .see-more-button:hover .arrow {
  transform: translateX(4px);
}
.professional-team-section .team-container .team-footer .see-more-button .arrow {
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .about-hero-section {
    padding: 32px 0 48px 0;
  }
  .professional-team-section {
    padding: 48px 0 24px;
  }
  .professional-team-section .team-section-header {
    margin-bottom: 48px;
  }
  .professional-team-section .team-container .team-grid {
    margin-bottom: 40px;
  }
  .professional-team-section .team-container .team-grid .team-card {
    padding: 20px;
  }
  .professional-team-section .team-container .team-grid .team-card .team-avatar {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }
  .professional-team-section .team-container .team-grid .team-card .team-info {
    margin-bottom: 16px;
  }
  .professional-team-section .team-container .team-grid .team-card .team-details {
    padding: 16px 20px;
    border-radius: 0 0 8px 8px;
  }
}
.customer-case-section {
  background: #F7F8F9;
  padding: 79px 0;
}
.customer-case-section .customer-case-container .customer-case-content {
  display: flex;
  gap: 60px;
  align-items: center;
}
@media (max-width: 1024px) {
  .customer-case-section .customer-case-container .customer-case-content {
    flex-direction: column;
    gap: 48px;
    text-align: center;
  }
}
.customer-case-section .customer-case-container .case-text {
  flex: 1;
  max-width: 600px;
}
.customer-case-section .customer-case-container .case-text .case-title {
  font-size: 41px;
  color: #03256C;
  line-height: 56px;
  font-weight: 800;
  margin-bottom: 41px;
}
@media (max-width: 767px) {
  .customer-case-section .customer-case-container .case-text .case-title {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .customer-case-section .customer-case-container .case-text .case-title {
    font-size: 28px;
  }
}
.customer-case-section .customer-case-container .case-text .case-subtitle {
  font-size: 25px;
  color: #03256C;
  line-height: 44px;
  font-weight: bold;
  margin-bottom: 67px;
}
@media (max-width: 767px) {
  .customer-case-section .customer-case-container .case-text .case-subtitle {
    font-size: 20px;
  }
}
.customer-case-section .customer-case-container .case-text .case-description {
  font-size: 15px;
  color: #132241;
  line-height: 21px;
  margin: 0;
}
@media (max-width: 767px) {
  .customer-case-section .customer-case-container .case-text .case-description {
    font-size: 14px;
  }
}
.customer-case-section .customer-case-container .case-image {
  flex: 1;
  max-width: 500px;
}
.customer-case-section .customer-case-container .case-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}
.customer-reviews-section {
  background: #FFFFFF;
  padding: 72px 0;
}
.customer-reviews-section .reviews-header {
  text-align: center;
  margin-bottom: 64px;
}
.customer-reviews-section .reviews-header .reviews-title {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #03256C;
  line-height: 1.2;
  margin: 0;
}
@media (max-width: 767px) {
  .customer-reviews-section .reviews-header .reviews-title {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .customer-reviews-section .reviews-header .reviews-title {
    font-size: 28px;
  }
}
.customer-reviews-section .reviews-container {
  position: relative;
  max-height: 600px;
  overflow: hidden;
}
.customer-reviews-section .reviews-container .reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 1024px) {
  .customer-reviews-section .reviews-container .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .customer-reviews-section .reviews-container .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.customer-reviews-section .reviews-container .reviews-grid .review-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.customer-reviews-section .reviews-container .reviews-grid .review-card {
  background: #F7F8F9;
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
}
.customer-reviews-section .reviews-container .reviews-grid .review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.customer-reviews-section .reviews-container .reviews-grid .review-card .review-text {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .customer-reviews-section .reviews-container .reviews-grid .review-card .review-text {
    font-size: 14px;
  }
}
.customer-reviews-section .reviews-container .reviews-grid .review-card .review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.customer-reviews-section .reviews-container .reviews-grid .review-card .review-author .author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.customer-reviews-section .reviews-container .reviews-grid .review-card .review-author .author-name {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #03256C;
  flex: 1;
}
.customer-reviews-section .reviews-container .reviews-grid .review-card .review-author .review-stars {
  display: flex;
  gap: 2px;
}
.customer-reviews-section .reviews-container .reviews-grid .review-card .review-author .review-stars .star {
  color: #FFC107;
  font-size: 16px;
}
.customer-reviews-section .reviews-container .reviews-gradient-mask {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(transparent, #FFFFFF);
  pointer-events: none;
}
.get-your-section {
  background: #03256C;
  padding: 49px 0 60px;
}
.get-your-section .get-your-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}
@media (max-width: 767px) {
  .get-your-section .get-your-content {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }
}
.get-your-section .get-your-text {
  flex: 1;
}
.get-your-section .get-your-text .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-text .get-your-title {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .get-your-section .get-your-text .get-your-title {
    font-size: 28px;
  }
}
.get-your-section .get-your-text .get-your-title .trademark-today {
  color: #353CF6;
}
.get-your-section .get-your-text .get-your-description {
  font-size: 17px;
  color: #FFFFFF;
  line-height: 24px;
  margin: 0;
}
@media (max-width: 767px) {
  .get-your-section .get-your-text .get-your-description {
    font-size: 16px;
  }
}
.get-your-section .get-your-button {
  flex-shrink: 0;
}
.get-your-section .get-your-button .registration-btn {
  background: #353CF6;
  border: 2px solid #353CF6;
  padding: 20px 26px;
  font-size: 17px;
  color: #FFFFFF;
  line-height: 23px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.get-your-section .get-your-button .registration-btn:hover {
  background: white;
  color: #353CF6;
  border-color: #353CF6;
}
@media (max-width: 767px) {
  .get-your-section .get-your-button .registration-btn {
    padding: 14px 28px;
    font-size: 14px;
  }
}
