.process-section {
  display: none;
}

@media screen and (min-width: 800px) {
  .process-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-color: #1A1A1A;
    color: #fff;
    padding: 80px 100px;
    gap: 100px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  /* Constrain the content to keep columns together */
  @media screen and (min-width: 1600px) {
    .process-section {
      padding-left: calc((100% - 1400px) / 2);
      padding-right: calc((100% - 1400px) / 2);
    }
  }
  
  .process-content {
    flex: 0 1 750px;
    max-width: 750px;
  }
  
  .process-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #fff;
    line-height: 1.2;
  }
  
  .process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 750px;
    width: 100%;
  }
  
  .step {
    background-color: #333333;
    border-radius: 12px;
    padding: 25px;
    padding-left: 45px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    position: relative;
    transition: all 0.3s;
    cursor: pointer;
    max-width: 750px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .step.highlighted {
    background-color: #FF6600;
    color: #fff;
  }
  
  .icon-number {
    position: absolute;
    left: -25px;
    top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
  }
  
  .icon-number .number {
    background-color: #FF6600;
    color: #fff;
    font-weight: 700;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 3px solid #1A1A1A;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  }
  
  .step.highlighted .icon-number .number {
    background-color: #fff;
    color: #FF6600;
    border: 3px solid #FF6600;
  }
  
  .icon-number .icon {
    margin-top: 8px;
    font-size: 24px;
    color: #fff;
  }
  
  .step-text {
    flex: 1;
  }
  
  .step-text h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
  }
  
  .step-text p {
    font-size: 15px;
    color: #ddd;
    line-height: 1.6;
    margin: 0;
  }
  
  .step.highlighted .step-text p {
    color: #fff;
  }
  
  .process-images {
    flex: 0 1 530px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    max-width: 600px;
    min-width: 400px;
    align-self: stretch;
  }
  
  .process-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
  }
  
  .process-images img:first-child {
    grid-column: 1 / -1;
    grid-row: 1 / 2;
  }
}