/* ========================================
   Contact Section
   ======================================== */

   .zhongyu-contact1 {
    position: relative;
    /* min-height: 300px; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
    overflow: hidden;
  }
  @media screen and (min-width: 1800px) {
    .zhongyu-contact1 .container{
      max-width: 1600px;
    }
  }
  /* ========================================
     Background Gradient
     ======================================== */
  
  .zhongyu-contact1-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0C3054 0%, #1B6BBA 100%);
    z-index: 1;
  }
  
  .zhongyu-contact1 .container {
    position: relative;
    z-index: 2;
  }
  
  /* ========================================
     Content Container
     ======================================== */
  
  .zhongyu-contact1-content {
    display: flex;
    /* flex-direction: column; */
    justify-content: space-between;
    align-items: center;
    gap: 30px;
  }
  
  /* ========================================
     Title
     ======================================== */
  
  .zhongyu-contact1-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.17;
    color: #FFFFFF;
    margin: 0;
    max-width: 100%;
  }
  
  /* ========================================
     Description
     ======================================== */
  
  .zhongyu-contact1-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #FFFFFF;
    margin: 0;
    max-width: 800px;
  }
  
  /* ========================================
     CTA Button
     ======================================== */
  
  .zhongyu-contact1-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 12px 32px 12px 44px;
    height: 55px;
    background-color: #FFFFFF;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }
  
  .zhongyu-contact1-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
  }
  
  .zhongyu-contact1-btn-text {
    font-size: 24px;
    font-weight: 700;
    color: #0C3054;
    line-height: 1.17;
  }
  
  .zhongyu-contact1-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #0C3054;
  }
  
  .zhongyu-contact1-btn-icon i {
    transition: transform 0.3s ease;
  }
  
  .zhongyu-contact1-btn:hover .zhongyu-contact1-btn-icon i {
    transform: translateX(5px);
  }
  
  /* ========================================
     Responsive Styles
     ======================================== */
  
  /* Tablets and below (max-width: 991px) */
  @media (max-width: 991px) {
    .zhongyu-contact1 {
      /* min-height: 250px; */
      padding: 30px 0;
    }
  
    .zhongyu-contact1-content {
      gap: 25px;
    }
  
    .zhongyu-contact1-title {
      font-size: 20px;
    }
  
    .zhongyu-contact1-description {
      font-size: 16px;
    }
  
    .zhongyu-contact1-btn {
      gap: 15px;
      padding: 10px 28px 10px 36px;
      height: 50px;
    }
  
    .zhongyu-contact1-btn-text {
      font-size: 18px;
    }
  }
  
  /* Mobile landscape and below (max-width: 767px) */
  @media (max-width: 767px) {
    .zhongyu-contact1 {
      /* min-height: 220px; */
      padding: 20px 0;
    }
  
    .zhongyu-contact1-content {
      gap: 20px;
      align-items: center;
      text-align: center;
    }
  
    .zhongyu-contact1-title {
      font-size: 18px;
    }
  
    .zhongyu-contact1-description {
      font-size: 15px;
    }
  
    .zhongyu-contact1-btn {
      gap: 12px;
      padding: 10px 25px 10px 32px;
      height: 48px;
    }
  
    .zhongyu-contact1-btn-text {
      font-size: 16px;
    }
  
    .zhongyu-contact1-btn-icon {
      font-size: 14px;
    }
  }
  
  /* Mobile portrait (max-width: 575px) */
  @media (max-width: 575px) {
    .zhongyu-contact1 {
      /* min-height: 200px; */
      padding: 20px 0;
    }
  
    .zhongyu-contact1-content {
      gap: 18px;
    }
  
    .zhongyu-contact1-title {
      font-size: 16px;
    }
  
    .zhongyu-contact1-description {
      font-size: 14px;
    }
  
    .zhongyu-contact1-btn {
      gap: 10px;
      padding: 8px 22px 8px 28px;
      height: 45px;
    }
  
    .zhongyu-contact1-btn-text {
      font-size: 14px;
    }
  }
  
  