*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:poppins;

}
.container{
    width:100%;
    height:100vh;
    background:linear-gradient(90deg,#b7e88c,#6eb652);

}
.parent{
    width:80%;
    height:90%;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    color:#0056b3;
    box-shadow:5px 5px 20px black;
    background-color:white;
    padding:3rem 4rem;

}
nav{
    display: flex;
    justify-content: space-between;
    align-items:center;
    padding:30px 50px;
    height:15%;

}

nav h1{
    margin-left:40px;
    font-weight:600;
    position:relative;
    color:#093c24;
    font-size:40px;
}
nav h1::before{
    content:'';
    width:20px;
    height:20px;
    position:absolute;
    top:50%;
    left:-40px;
    transform:translateY(-50%);
    background:linear-gradient(90deg,red,blue);

}
nav ul{
    display:flex;
    margin-right:150px;

}
nav ul li{
    list-style-type: none;
}
ul li a{
    text-decoration : none;
    padding:5px 20px;
    text-transform:uppercase;
    font-weight:500;
    font-size:15px;
    transition:0.3s ease;

}

ul li a:hover{
    color:red;
  
}
.parent .main_content{
    display:flex;
    height:85%;


}
.main_content .left{
    width:45%;
    height:100%;
    padding:40px;

}
.left h3{
    font-weight:600;
    font-size:25px;
    text-transform:uppercase;
    margin-top:40px;

}
.left h1{
    font-size:45px;
    font-weight:600;
    margin-bottom:20px;
    line-height:60px;
    text-transform:uppercase;
}
.left p{
    font-size:12px;
    font-weight:500;

}
.left button{
    padding:2px 20px;
    border-radius:8px;
    border:none;
    outline:none;
    background-color:#033677;
    color:white;
    margin-top:40px;
    transition:0.3s ease;
}
.left button:hover{
    background-color:blue;
}
.main_content .right{
  width:60%;
  height:85%;
  padding:100px;  
}

.right img{
    width:100%;
    height:300px;
    margin-left:50px;
    
}
.main_content{
    display:flex;
} 

/* Existing CSS code remains the same */

/* Responsive CSS */
@media (max-width: 1200px) {
    .parent {
      width: 90%;
      height: auto;
      padding: 2rem;
    }
    nav {
      flex-direction: column;
      height: auto;
      padding: 20px;
    }
    nav h1 {
      margin-left: 0;
      font-size: 28px;
      text-align: center;
    }
    nav ul {
      flex-direction: column;
      margin-right: 0;
      align-items: center;
    }
    nav ul li {
      margin: 10px 0;
    }
    .main_content {
      flex-direction: column;
    }
    .main_content .left, .main_content .right {
      width: 100%;
      padding: 20px;
    }
    .main_content .right img {
      height: 200px;
      margin-left: 0;
    }
  }
  
  @media (max-width: 768px) {
    nav h1 {
      font-size: 20px;
    }
    ul li a {
      font-size: 16px;
    }
    .left h1 {
      font-size: 35px;
      line-height: 45px;
    }
    .left h3 {
      font-size: 20px;
    }
    .right img {
      height: 150px;
    }
    .left button {
      font-size: 14px;
      padding: 5px 15px;
    }
  }
  
  @media (max-width: 480px) {
    nav {
      padding: 10px;
    }
    nav h1 {
      font-size: 20px;
    }
    ul li a {
      font-size: 14px;
    }
    .left h1 {
      font-size: 28px;
      line-height: 35px;
    }
    .left h3 {
      font-size: 18px;
    }
    .left p {
      font-size: 10px;
    }
    .right img {
      height: 120px;
    }
    .left button {
      font-size: 12px;
      padding: 5px 10px;
    }
  }
  