.casestudy-flex-parent {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.casestudy-flex-child:first-child {
    flex: 5;
    p{
        line-height: 24px;
    }
    img{
        margin: 20px 0;
    }
    h3{
        font-size: 24px;
        margin: 12px 0;
        color: #62C4E6;
        text-align: center;
    }
    h4{
        background: #62C4E6;
        color: white;
        margin-top: 20px;
        margin-bottom: 10px;
        font-size: 18px;
        padding: 4px;
        border-radius: 2px;
        text-align: center;
    }
    ul{
        line-height: 36px;
    }
}

.casestudy-flex-child:last-child {
    flex: 5;
}

.casestudy-flex-child-image {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;

    img {
        border-radius: 3px;
    }
}

.casestudy-form-list {
    li {
        background: #62c4e636;
        padding: 6px 10px;
        margin-bottom: 10px;
        border-radius: 3px;
        display: flex;
        align-items: center;
    }

    .check {
        flex-shrink: 0; 
        margin: 0 16px 0 8px;
        background: #62C4E6;
        padding: 0 12px;
        color: white;
        border-radius: 50%;
    }

    .border-left {
        border-left: 1px solid #62C4E6;
        padding-left: 16px;
        display: block; 
    }
}

.form-link {
    display: none;
}

@media (max-width: 768px) {
    .casestudy-flex-parent {
        flex-direction: column;
    }

    .casestudy-flex-child {
        flex: none;
        width: 100%;
    }

    .form-link {
        display: block;
        text-align: center;
        padding: 15px;
        margin-bottom: 15px;
        border-radius: 5px;
        border: 1px solid #35bada;
        color: #fff !important;
        background: #35bada !important;
    }
}