body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
}

.title-main {
    width: 70%;
    color: #0E0E0E;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 50px;
}

.content-text {
    color: #000;
    font-family: 'Poppins', sans-serif;
}

.content-text-white {
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-style:normal;
    font-weight: 300;
}


.content-text-white .h2 {
    color: #FFF;
    font-family: Poppins;
    font-size: inherit;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 20px;
}


.content-text-white p {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;

}


.content-text-white ul {
    list-style: none; /* Remove default list style */
    padding-left: 0; /* Remove default padding */
}

.content-text-white ul li {
    position: relative; /* Position relative for pseudo-element */
    padding-left: 20px; /* Add padding to make space for the icon */
}

.content-text-white ul li::before {
    content: '>'; /* Custom icon */
    position: absolute; /* Position absolute for pseudo-element */
    left: 0; /* Align icon to the left */
    color: #FFF; /* Icon color */
    /* font-weight: bold; Icon weight */
}

.insurance-text ul {
    list-style: none; /* Remove default list style */
    padding-left: 0; /* Remove default padding */
    line-height: 140%; 
}

.insurance-text ul li::before {
    content: '•'; /* Custom round bullet */

  
}

.title {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
}

.title-white {
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 30px;
}

.img-fluid-custom {
    width: 100%;
    object-fit: cover;
}

.d-flex-custom {
    display: flex;
    gap: 30px;
}

.approve-section .d-flex-custom {
    align-items: center;
    gap: 40px;
}

.approve-section-background {
    background-color: #0040c3;
}

.img-approved{
    width: 85%;
    object-fit: cover;
}

.highlight-box {
    border-radius: 10px;
    border: 1px solid rgba(233, 233, 233, 0.69);
    padding: 30px 30px;
    margin-top: 20px;
    color: #FFF;
    background-color: #0040c3;
    width: 100%;
}

.highlight-text-bold {
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 140%;
    margin-bottom: 10px;
    text-align: left;
}

.highlight-text-regular {
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 140%;
    text-align: left;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
    padding: 0;
}

ul li {
    margin-bottom: 10px;
}

.responsive-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Responsive text adjustments for consistency between screen sizes */
.responsive-text h2 {
    font-size: 2.438rem; /* fs-39 size for headings */
}

.responsive-text h3 {
    font-size: 1.938rem; /* fs-31 size for subheadings */
}

/* .responsive-text p, 
.responsive-text ul li {
    font-size: 1.25rem; 
} */

/* Define a media query for mobile devices */
@media screen and (max-width: 480px) {
    .section {
        padding: 4px;
    }


    .title-main {
        width: 100%;
    }

    .img-fluid-custom {
        max-width: 100%; 
    }
    .highlight-box {
        text-align: center;
    }

    .content-text,
    .content-text-white {
        text-align: center;
    }
    .content-text-white h2{
        font-size: 2rem;
    } 

    .content-text-white ul 
    {
        text-align: left;
    }
    
    .responsive-content img {
        width: 100%;
        margin-bottom: 15px;
    }

    .responsive-text h2 {
        font-size: 1.5rem;
    }
    
    .responsive-text h3 {
        font-size: 1.25rem;
    }
    
    .responsive-text p,
    .responsive-text ul li {
        font-size: 0.875rem;
    }
}

/* Define a media query for tablets */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .section {
        padding: 0px;
    }
    
    .title-main {
        width: 70%;
    }


    .img-fluid-custom {
        max-width: 95%; 
    }

    .highlight-box {
        text-align: center;
    }

    .content-text-white h2{
        font-size: 2rem;
    } 

    .responsive-content img {
        max-width: 95%;
        margin-bottom: 20px;
    }

    .responsive-text h2 {
        font-size: 1.75rem;
    }
    
    .responsive-text h3 {
        font-size: 1.375rem;
    }
    
    .responsive-text p,
    .responsive-text ul li {
        font-size: 0.938rem;
    }
}

/* Define a media query for desktop devices */
@media screen and (min-width: 769px) {
    
    .img-fluid-custom {
        max-width: 610px; /* Adjust image width for larger screens */
    }

    .highlight-box {
        text-align: left;
    }
}

/* Media query for 1024px screens */
@media screen and (min-width: 992px) and (max-width: 1199.98px) {
    .responsive-text h2 {
        font-size: 2rem; /* Reduced from 2.438rem */
    }
    
    .responsive-text h3 {
        font-size: 1.5rem; /* Reduced from 1.938rem */
    }
    
    .responsive-text p,
    .responsive-text ul li {
        font-size: 1rem; /* Reduced from 1.25rem */
    }
    
    .content-text-white h2 {
        font-size: 2rem; /* Adjusted for better consistency */
    }
}