.ProvenPerformance {
    margin: 0 auto;
    padding: 60px 20px;
    font-family: Arial, Helvetica, sans-serif;
    color: #111111;
    background-color: #ffffff;
}

.ProvenPerformance .heading {
    font-size: 35px;
    font-weight: 800;
    color: #f7ca18;
    text-transform: uppercase;
    margin-bottom: 32px;
    letter-spacing: -0.3px;
}

.ProvenPerformance .contentWrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
}

.ProvenPerformance .topTextContainer {
    flex: 1 1 60%;
}

.ProvenPerformance .paragraph {
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 20px;
}

.ProvenPerformance .bottomTextContainer {
    width: 100%;
}

.ProvenPerformance .redI {
    color: #e52421;
    /* Red color for the 'I' in ISATellite */
    font-style: italic;
    font-weight: bold;
}

/* Right Column Image Branding Container */
.ProvenPerformance .imageWrapper {
    flex: 0 0 380px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Black framing lines around the image */
.ProvenPerformance .frameContainer {
    position: relative;
    padding: 15px;
    width: 100%;
}

.ProvenPerformance .productImage {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Responsive Styles */

@media (min-width:0px) and (max-width: 575.98px) {
    .ProvenPerformance {
        padding: 30px 0px;
    }

    .ProvenPerformance .heading {
        font-size: 22px;
    }

    .ProvenPerformance .paragraph {
        font-size: 15px;
    }

    .ProvenPerformance .imageWrapper {
        flex: 0 0 200px;
    }

    .ProvenPerformance .contentWrapper {
        gap: 10px;
        flex-direction: column;
    }
}

@media (min-width:576px) and (max-width: 767.98px) {
    .ProvenPerformance .contentWrapper {
        gap: 0px;
        flex-direction: column;
    }
}

@media (min-width:768px) and (max-width: 991.98px) {
    .ProvenPerformance .contentWrapper {
        flex-direction: column;
        gap: 0;
    }

    .ProvenPerformance .imageWrapper {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .ProvenPerformance .heading {
        font-size: 1.7rem;
    }
}