.splash-num-img > img {
    width: 85%;
    height: auto;
    padding-top: 100px; /* initial padding */
  }
  
  .splash-num-img.s1 > img {
    width: 95%;
  }
  
  .splash-num-img.s2 {
    text-align: right;
  }
  .splash-num-img.s2 > img {
    padding-top: 0;
  }
  
  .splash-num-img.s3 > img {
  }
  
  /* Desktop vs Mobile visibility */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

/* Mobile-specific trust page section */
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
  
  .mobile-only {
    display: block;
  }
  
  /* Mobile section 2 styling - break out of grid */
  .mobile-section-2 {
    grid-column: 1 / -1;
    width: 100%;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
  }
  
  .mobile-section-2-number {
    margin-bottom: 8px;
    width: 100%;
  }
  
  .mobile-section-2-content {
    margin-bottom: 16px;
    width: 100%;
  }
  
  .mobile-section-2-content h3 {
    margin-bottom: 16px;
  }
  
  .mobile-section-2-content p {
    line-height: 1.6;
  }
  
  .mobile-section-2-image {
    margin-bottom: 24px;
    width: 100%;
    text-align: center;
  }
  
  .mobile-section-2-image > img {
    width: 100%;
    max-width: 380px;
    height: auto;
  }

  .splash-num-img > img {
    padding-top: 50px;
}
  .splash-num-img.s1,
  .splash-num-img.s3 {
    text-align: center;
  }
}

