
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    font-family: Inter;
}
.container-fluid {
    width: 100%;
    padding: 40px 0px;
    background-color: #F3F3F3;
}
.container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.header{
    display: grid;
    grid-template-columns: 1fr 3fr;
    
}
.header h2{
    padding-left: 30px;
    font-size: 28px;
}
.nav{
    
}
.nav .nav-ul{
    display: flex;
    justify-content: end;
    align-items: center;
    height: 100%;
    gap: 30px;
    padding-right: 50px;
}
.nav-ul li {
    list-style-type: none;
}
.nav-ul li a{
    text-decoration: none;
    color: black;
}
.main-area{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.heading-section{
  
    padding-top: 90px;
}
.heading-section h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    margin-left: 30px;
}
.heading-section p{
    padding-top: 25px;
    line-height: 1.5;
    margin-left: 30px;
}
.heading-section button{
    margin-left: 30px;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
}

.img-section{
    height: 400px;
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;
    padding-top: 20px;
}
.img-section img{
    border-radius: 15px;
    object-fit: cover;
    margin-left: 30px;
}