
  
  body {
    font-family: Arial, sans-serif;
    padding: 2rem;
    background-image: radial-gradient(rgb(221, 106, 106), #FEF7EC, #FEF7EC);
    background-position: top center;
    background-size: 1500px 1500px;
    background-repeat: no-repeat;
}
  
  
  .container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
  }
  
  .laptop-section {
    margin-top:6%;
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  .laptop-image {
    width: 100%;
    max-width: 1000px;
 
    
  }

  .image{
    max-width: 1200px;
  }

   @media (max-width: 768px) { 
  .image{
    
   max-width: 300px;
  
  }
}
     @media (max-width: 768px) { 
  .text-box{
   margin-left: 1;
   max-width: 300px;
   
  
  }
}




  .wide-box {
    
    background-color: brown;
    margin-bottom: 2rem;
  }
  
.container1 {
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  max-width: 1000px;
  padding-top: 20px;
  text-align: left;
  margin-bottom: 10%;
  margin-top: 10%;
}

 @media (max-width: 768px) { 
  .container1 {
    gap: 0px;
    display: flex;
    flex-direction: column;
    
    font-size: 1rem ;
  }
}

.image-box {
  width: 100%;
  
  max-width: 650px;
  
}

.text-box {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  max-width: 400px;
  margin-left: -30%;
  
}

 @media (max-width: 768px) { 
  .image-box{
    margin-bottom: 40%;
   
  
  }
}

.grid2{
  grid-template-columns: 1fr 1fr;
  max-width: 100%;
  background-color: none;
}

.grid4{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: center;

    max-width: 1000px;   /* Your existing container width */
    margin: 0 auto;      /* Keep content centered */
    padding: 0 20px;     /* Side padding */
  }



