.assurance-section {
    background: #FFFFFF;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    /* background-size: auto 100%; */
}

/* Content Container */
.assurance-container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 40px;
    position: relative;
    z-index: 2;
}

/* Two Column Grid */
.assurance-grid {
    display: grid;
    grid-template-columns: 1.75fr 1fr;
    gap: 50px;
    align-items: center;
}


.assurance-content-col {
    /* padding-right: 20px; */
    padding-left: 5rem;
}

/* Title */
.assurance-content-col h2 {
    font-size: 45px !important;
    line-height: 1.2;
    font-weight: 500;
    color: #FF7821;
    margin: 0 0 30px 0;
    width: 556px;
    height: 111px;
}

/* Text Content */
.assurance-text{
    width: 556px;
    height: 191px;
}
.assurance-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #05001C;
    margin-bottom: 20px;
    font-weight: 500;
}

.assurance-text p:last-child {
    margin-bottom: 0;
}

.assurance-image-col {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.assurance-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.assurance-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

@media screen and (max-width: 1200px) {
    .assurance-section {
        background-size: auto 80%;
    }
}

@media screen and (max-width: 1422px) {
    .assurance-container {
        padding-right: 40px;
    }
}

@media screen and (max-width: 1024px) {
    .assurance-grid {
        gap: 60px;
    }
    
    .assurance-content-col h2 {
        font-size: 38px !important;
    }
    
    .assurance-section {
        background-size: auto 70%;
    }
}

@media screen and (max-width: 768px) {
    .assurance-section {
        padding: 0;
        background-image: none !important; 
    }
    
    .assurance-container {
        padding: 0 20px;
    }
    
    .assurance-grid {
        display: block;
    }
    
    .assurance-content-col {
        padding-right: 0;
        padding-left: 0;
        text-align: center;
    }
    
    .assurance-content-col h2 {
        font-size: 31px !important;
        width: auto;
        height: auto;
    }
    .assurance-text {
        width: auto;
        height: auto;
    }
    .assurance-text p {
        font-size: 15px;
        text-align: center;
    }
    
    .assurance-image-col {
        justify-content: center;
    }
    
    .assurance-image-wrapper {
        max-width: 400px;
    }
}

