.new-guide {
    overflow: hidden;
    position: relative;
    padding: 80px 0;
}

.new-guide.wave-top {
    top: -95px;
    padding-top: 180px;
    margin-bottom: -95px;
}

.new-guide .background-image {
    height: 100%;
    width: 100%;
    left: 0;
}

.new-guide .content-inner {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
    padding: 0 200px;
}

.new-guide .image {
    max-width: 450px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.new-guide .title {
    color: #6A6C9D;
    margin-bottom: 20px;
}

.new-guide .links {
    margin-top: 40px;
    display: block;
}

@media only screen and (max-width: 1500px) {
    .new-guide { 
        padding: 40px 0;
    }
    .new-guide.wave-top {
        padding-top: 120px;
    }
}

@media only screen and (max-width: 1250px) { 
    .new-guide .content-inner {
        gap: 30px;
        padding: 0 100px;
    }
}

@media only screen and (max-width: 991px) { 
    .new-guide .content-inner {
        padding: 0;
    }
}

@media only screen and (max-width: 768px) {
    .new-guide .content-inner {
        flex-direction: column;
        gap: 30px;
        justify-content: center;
        align-items: center;
    }
    .new-guide .title { 
        font-size: 38px;
    }
    .new-guide .links {
        margin-top: 40px;
        text-align: center;
        display: flex;
        justify-content: center;
    }
    .new-guide .content {
        text-align: center;
    }
 }