body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(120deg, #e0f7fa, #fafcfc);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  .header {
    text-align: center;
    padding: 20px;
    background-color: #007BFF;
    color: white;
    font-size: 2rem;
  }
  
  .content {
    flex-grow: 1;
  }
  
  .process {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 50px;
  }
  
  .step {
    text-align: center;
  }
  
  figure {
    margin: 0;
    display: inline-block;
    width: 400px;
    position: relative;
  }
  
  figure img {
    width: 100%;
    border-radius: 10px;
  }
  
  figcaption {
    background-color: rgb(255, 255, 255);
    color: rgb(8, 7, 7);
    font-size: 1rem;
    padding: 10px;
    border-radius: 0 0 10px 10px;
    text-align: center;
  }
  
  .footer {
    text-align: center;
    padding: 15px;
    background-color: #007BFF;
    color: white;
    font-size: 1rem;
  }
  