* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    .about-hero-area {
      position: relative;
      height: 450px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background-position: center;
      background-image: url(/plugins/img/partservice.jpg?v2);
      background-repeat: no-repeat;
      background-size: cover;
    }
    .about-hero-area::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color1: rgba(0, 0, 0, 0.1);
      z-index: 1;
    }
    .about-hero-content {
      position: relative;
      z-index: 2;
      max-width: 1520px;
      width: 100%;
      margin: 0 auto;
      padding: 0 20px;
    }
    .about-hero-content h1 {
      font-size: 60px;
      color: #000000;
      margin-bottom: 30px;
      font-weight: 700;
      font-family: 'Work Sans', sans-serif;
    }
    .about-hero-btn {
      display: inline-block;
      padding: 12px 30px;
      background-color: transparent;
      color: #000000;
      border: 1px solid #000000;
      border-radius: 25px;
      text-decoration: none;
      font-size: 16px;
      font-weight: 500;
      transition: all 0.3s ease;
    }
    .about-hero-btn:hover {
      background-color: rgba(255, 255, 255, 1);
      color: #000000;
    }
    .contact-cards-area {
      padding: 60px 20px 20px 20px;
      background-color: #ffffff;
    }
    .contact-cards-container {
      max-width: 1520px;
      margin: 0 auto;
    }
    .contact-service-title {
      text-align: center;
      font-size: 32px;
      color: #333333;
      font-weight: 600;
      margin-bottom: 50px;
    }
    .contact-cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .contact-card {
      background-color: #f8f9fa;
      padding: 50px;
      border-radius: 12px;
      text-align: center;
      transition: all 0.3s ease;
    }
    .contact-card:hover {
      box-shadow: inset 0 0 15px rgba(102, 126, 234, 0.3), inset 0 0 8px rgba(118, 75, 162, 0.2), inset 0 0 5px rgba(255, 105, 180, 0.2);
      border-color: #000000;
      color: #000000;
    }
    .contact-card .avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      margin: 0 auto 15px;
      object-fit: cover;
    }
    .contact-card .name {
      font-size: 18px;
      color: #333333;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .contact-card:hover .name {
      color: #333333;
    }
    .contact-card .work-time {
      font-size: 14px;
      color: #999999;
      margin-bottom: 15px;
    }
    .contact-card:hover .work-time {
      color: #999999;
    }
    .contact-card .qq-btn {
      border: 1px solid #333333;
      display: inline-block;
      padding: 8px 20px;
      background-color: #ffffff;
      color: #333333;
      border-radius: 20px;
      font-size: 16px;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    .contact-service-area {
	padding: 20px 20px 0px 20px;
	background-color: #f5f5f5;
}
    .contact-service-container {
      max-width: 1520px;
      margin: 0 auto;
    }
    .contact-service-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    .contact-service-left {
      grid-column: span 2;
      background-color: #ffffff;
      border-radius: 12px;
      padding: 40px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }
    .contact-service-right {
      flex: 1;
      background-color: #ffffff;
      border-radius: 12px;
      padding: 40px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }
    .service-phone-title {
      font-size: 18px;
      color: #333333;
      font-weight: 600;
      margin-bottom: 20px;
    }
    .service-phone-number {
      font-size: 36px;
      color: #3399FF;
      font-weight: 700;
      margin-bottom: 20px;
    }
    .service-phone-desc {
      font-size: 14px;
      color: #666666;
      line-height: 1.6;
    }
    .service-online-title {
      font-size: 18px;
      color: #333333;
      font-weight: 600;
      margin-bottom: 15px;
    }
    .service-online-desc {
      font-size: 14px;
      color: #666666;
      line-height: 1.6;
      margin-bottom: 30px;
    }
    .service-submit-btn {
      display: inline-block;
      padding: 12px 30px;
      background-color: #333333;
      color: #ffffff;
      border: none;
      border-radius: 4px;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }
    .service-submit-btn:hover {
      background-color: #555555;
    }
    .process-area {
      background-color: #ffffff;
      padding: 80px 0;
    }
    .process-container {
      max-width: 1500px;
      margin: 0 auto;
    }
    .section-title {
      text-align: center;
      margin-bottom: 60px;
    }
    .section-title h2 {
      font-size: 30px;
      font-weight: 600;
      color: #333333;
      margin-bottom: 10px;
    }
    .process-steps {
      display: flex;
      justify-content: space-between;
      position: relative;
    }
    .process-steps::before {
      content: '';
      position: absolute;
      top: 40px;
      left: 0;
      right: 0;
      height: 2px;
      background-color: #eeeeee;
    }
    .process-step {
      flex: 1;
      text-align: center;
      position: relative;
      z-index: 2;
    }
    .step-circle {
      width: 80px;
      height: 80px;
      margin: 0 auto 20px;
      border-radius: 50%;
      background-color: #ffffff;
      border: 2px solid #eeeeee;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      font-weight: 600;
      color: #999999;
      transition: all 0.3s ease;
    }
    .process-step:hover .step-circle {
      border-color: #00aaff;
      color: #00aaff;
    }
    .process-step h3 {
      font-size: 18px;
      font-weight: 600;
      color: #333333;
      margin-bottom: 8px;
    }
    .process-step p {
      font-size: 14px;
      color: #999999;
      max-width: 200px;
      margin: 0 auto;
    }
    .apply-btn {
      display: inline-block;
      padding: 12px 30px;
      background-color: #000000;
      color: #ffffff;
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      transition: all 0.3s ease;
    }
    .apply-btn:hover {
      background-color: #333333;
      color: #ffffff;
    }
    .video-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      z-index: 9999;
      justify-content: center;
      align-items: center;
    }
    .video-modal.active {
      display: flex;
    }
    .video-modal-content {
      position: relative;
      max-width: 100vw;
      max-height: 100vh;
      background-color: rgba(0, 0, 0, 0.5);
      border-radius: 8px;
      overflow: visible;
    }
    .video-modal-content video {
      max-width: 100vw;
      max-height: 100vh;
      object-fit: contain;
      display: block;
      border-radius: 8px;
      background-color: transparent;
    }
    .video-modal-close {
      position: absolute;
      top: -45px;
      right: 10px;
      padding: 10px 20px;
      background-color: rgba(255, 255, 255, 0.95);
      border: none;
      border-radius: 25px;
      color: #333;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
      z-index: 10001;
    }
    .video-modal-close:hover {
      background-color: #fff;
      transform: scale(1.05);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    }
    
    .why-risk-control-area{
      background: #f5f5f5;
    }
    .container {
      max-width: 1520px;
    }
    .why-risk-control-header {
      margin-bottom: 60px;
    }
    .why-risk-control-title{
      font-size: 2rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 0;
    }
    .why-risk-control-cards{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .risk-control-card {
     background: #ffffff;
     border-radius: 16px;
     padding: 32px;
    }
    .risk-control-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    }
    .risk-control-card-desc{
    color: #000;
    }

    @media screen and (max-width: 992px) {
      .about-hero-content h1 {
        font-size: 36px;
      }
      .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .container {
        padding-right: 15px !important;
        padding-left: 15px !important;
        margin-right: auto !important;
        margin-left: auto !important;
    }
      .why-risk-control-cards {
        grid-template-columns: 1fr;
    }
      .why-risk-control-title{
        font-size: 1.5rem;
      }
    }
    @media screen and (max-width: 768px) {
      .contact-cards-grid {
        grid-template-columns: 1fr;
      }
      .about-hero-area {
        height: 240px;
      }
      .about-hero-content h1 {
        font-size: 28px;
        margin-bottom: 20px;
      }
      .about-hero-btn {
        padding: 10px 24px;
        font-size: 14px;
        background-color: transparent;
      }
      .about-hero-content {
        padding: 0 20px;
        text-align: center;
      }
      .contact-service-grid {
        grid-template-columns: 1fr;
      }
      .contact-service-left {
        grid-column: span 1;
      }
      .contact-service-left,
      .contact-service-right {
        padding: 30px 20px;
      }
      .contact-service-area {
        padding: 40px 15px;
      }
      .contact-service-title {
        font-size: 26px;
        margin-bottom: 35px;
      }
      .service-phone-number {
        font-size: 28px;
      }
      .process-area {
        padding: 30px 0;
      }
      .section-title {
        margin-bottom: 50px;
      }
      .section-title h2 {
        font-size: 30px;
      }
      .process-steps {
        flex-direction: column;
        gap: 12px;
      }
      .process-step {
        margin-bottom: 0;
      }
      .step-circle {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 6px;
      }
      .process-step h3 {
        font-size: 14px;
        margin-bottom: 2px;
      }
      .process-steps::before {
        display: none;
      }
      .process-step p {
        display: none;
      }
    }
    @media screen and (max-width: 480px) {
      .about-hero-content h1 {
        font-size: 22px;
      }
    }