.how-made-section {
    display: flex;
    width: 100%;
    height: 600px;
    gap: 60px;
    padding: 35px 80px;
    box-sizing: border-box;

  }
  
  .photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 25px;
    flex-shrink: 0;
  }
  
  .photo-grid img {
    width: 300px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }
  
  .text-block {
    background-color: rgba(255, 255, 255, 0.232);
    padding: 40px;
    border-radius: 12px;
    width: 750px;
    height: 85%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .text-block h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 32px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: white;
    font-weight: bold;
  }
  
  .text-block p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: rgb(240, 240, 240);
    font-weight: bold;
  }
  