.case-study-highlight {
    width: 95%;
    margin: 40px auto;

    border-radius: 20px;
    overflow: hidden;
}

.case-study-container {
    display: flex;
    align-items: stretch;
    margin-bottom: 20px;
}

.case-study-img,
.case-study-content {
    flex: 1;
}

.case-study-img img {
    width: 90%;
    height: 90%;

    margin: 5% 0 0 5%;

    border-radius: 20px;

    object-fit: cover;
    display: block;
}

.case-study-content {
    padding: 20px;
}

.case-study-content p {
    line-height: 1.6;
}

.case-study-steps {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;

    list-style: none;

    padding: 0;
    margin-top: 30px;
}

.case-study-steps li {
    display: flex;
    align-items: center;
    gap: 8px;

    font-weight: 600;
    color: #1e293b;
}

.case-study-steps i {
    color: #0f172a;
    font-size: 14px;
}

.arrow i {
    color: #64748b;
    font-size: 12px;
}

.case-study-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 20px;
    padding: 16px 28px;

    border: none;
    border-radius: 14px;

    background-color: #2563eb;
    color: white;

    font-size: 18px;
    font-weight: 700;
    text-decoration: none;

    cursor: pointer;

    box-shadow: 0 8px 20px rgba(77, 91, 139, 0.25);
    transition: all 0.25s ease;
}

.case-study-btn:hover {
    transform: translateY(-2px);
    background-color: #1d4cb3;
    box-shadow: 0 12px 24px rgba(77, 91, 139, 0.35);
}