.course-hero-container {
    background-color: #F3F8FF;
    margin-top: 130px;
    border-radius: 20px;
    display: flex;
    padding: 50px;
    position: relative;
    overflow: hidden;
    margin-left: 30px;
    margin-right: 30px;
}

.white_text{
    color: white;
}

.white_text .course-heading{
    color: white;
}

.white_text .course-description p {
    color: white;
}

.course-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 27px;
}

.button-space_1{
    padding: 15px 20px;
    border-radius: 5px;
    background-color: #E70491;
    margin-right: 5px;
}

.course-subtitle {
    color: #0075FF;
    padding: 5px 10px;
    background-color: #D4E8FF;
    font-size: 14px;
    border-radius: 5px;
    margin-bottom: -12px !important;
}

.course-heading {
    font-weight: 700;
    color: #001B2F;
    line-height: 130% !important;
    font-size: 32px !important;
}

.course-description p {
    font-weight: 400;
    font-size: 16px;
    line-height: 180% !important;
    color: #001B2F;
    width: 48%;
}

.course-schedule-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    color: #E70491 !important;
    font-weight: 700;
    line-height: 180%;
    text-decoration: none !important;
    cursor: pointer;
    overflow: visible;
}

.schedule-text {
    position: relative;
}

.schedule-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background-color: #E70491;
    transition: width 0.3s ease;
}

.course-schedule-button:hover .schedule-text::after {
    width: 100%;
}

.schedule-arrow {
    display: inline-block;
    line-height: 1;
    transition: transform 0.3s ease;
}

.schedule-arrow svg {
    color: #E70491;
}

.course-schedule-button:hover .schedule-arrow {
    transform: translateX(5px);
}

.course-image-wrapper {
    position: absolute;
    bottom: 123px;
    right: -240px;
    height: 320px;
    transform: rotate(-26deg);
    transform-origin: bottom right;
    z-index: 1;
    pointer-events: none;
}

.course-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1024px) {
    .course-image-wrapper {
        height: 70%;
        bottom: 100px;
        right: -200px;
    }
}

@media(max-width: 968px) {
    .course-image-wrapper {
        height: 65%;
        bottom: 100px;
        right: -320px;
    }
}

@media (max-width: 768px) {
    .course-image-wrapper {
        display: none;
    }
}