* {
  margin: 0;
  padding: 0;
}
.offer h3 {
  font-size: 25px;
  font-weight: 600;
  color: #2e0e50;
  padding: 50px;
  text-align: center;
}
.off{
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.off-left{
    display: flex;
    background: #BEB4C95E;
    padding: 40px 20px 40px 0px;
    margin-right: 10%;
    align-items: center;
    gap: 60px;
}
.off-right{
    display: flex;
    justify-content: space-between;
    background: #BEB4C95E;
    padding: 40px 0px 40px 80px;
    margin-left: 10%;
    align-items: center;
}
.off img{
    width: 40%;
}
.detail h4{
    font-size: 30px;
    font-weight: 600;
    color: #2e0e50;
    padding-bottom: 40px;
}
.detail ul{
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 0px !important;
}
.detail ul li{
    list-style-type: none;
    color: #735E8A;
    font-size: 18px;
}
.implement{
    background: linear-gradient(110.49deg, #130622 19.95%, #361256 67.64%, #5C1E92 107.08%, #19082C 156.61%, #130622 183.21%);
    color: #ffffff;
    display: flex;
    gap: 50px;
    border-radius: 26px;
    margin: 50px 10%;
    align-items: center;
}
.implement img{
    width: 50%;
}
.implement-detail h4{
    font-size: 35px;
    font-weight: 600;
    padding-bottom: 30px;
}
.implement-detail p{
    color: #BEB4C9;
    padding-bottom: 30px;
}
button{
    align-items: center;
}


@media (max-width: 1024px) {
    .detail h4{
        font-size: 25px;
    }
    .implement{
        margin: 50px 5%;
    }
    .implement-detail h4{
        font-size: 25px;
    }
  }
  @media (max-width: 768px) {
    .off img{
        width: 50%;
    }
    .off-left{
        padding: 20px 20px 20px 0px;
    }
    .off-right{
        padding: 20px 0px 20px 80px;
    }
    .implement img{
        width: 50%;
    }
    .implement-detail h4{
      padding-top: 10px;
        padding-bottom: 10px;
    }
    .implement-detail p{
        padding-bottom: 0px;
    }
    button{
        margin-bottom: 10px;
    }
  }
  @media (max-width: 426px) {
    .off img{
        width: 100%;
    }
    .off-left{
        padding: 20px;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .off-right{
        padding: 20px;
        flex-direction: column-reverse;
        gap: 20px;
        align-items: center;
    }
    .detail h4{
        padding-bottom: 10px;
    }
    
      .implement{
        flex-direction: column;
        text-align: center;
        padding: 40px;
      }
      .implement img{
        width: 100%;
    }
  }
