  /* Universal Fix */
* {
    box-sizing: border-box;
  }
  
  /* body {
    overflow-x: hidden;
  } */
  
  /* Fix the globe section */
  #globeViz {
    width: 100%;
    height: 550px !important;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent !important;
}
  
  /* Ensure pipeline arrows wrap in mobile */
  .pipeline-flow {
    flex-wrap: wrap;
  }
  
  /* Responsive tweak for .arrow */
  .pipeline-flow .arrow {
    flex-shrink: 0;
  }
  
  /* New CSS */
  .image-card{
    background: #ffffff;
    border-radius: 12px;
    border: 3px solid var(--soft-gray);
    padding: 1.5rem 1rem;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .impact-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--muted-gold);
    padding: 1.5rem 1rem;
    max-width: 320px;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .impact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  }
  
  .impact-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .impact-card p {
    font-size: 1rem;
    color: var(--text-color);
  }
  

  .muted-gold-text {
    color: var(--muted-gold);
    font-size: 2.5rem;
  }

  .pipeline-section {
    background-color: var(--soft-gray);
  }

  .pipeline-icon {
    width: 64px;
    height: auto;
    margin-bottom: 0.5rem;
  }

  .pipeline-flow .arrow {
    font-size: 2rem;
    margin: 0 1rem;
    color: var(--button-color);
  }

  .step {
    min-width: 100px;
    flex: 1;
  }
  
  .bg-soft-gray {
    background-color: var(--soft-gray);
  }

  @media (max-width: 768px) {
    #globeViz {
        height: 200px;
        display: flex;
        justify-content: center;
        align-items: center;
      }
  }