.basic-section-with-links {
    padding: 175px 0px;
    background: linear-gradient(to right, #235A9D, #05ACDE);
    position: relative;
    border-radius: 200px 0 200px 0;
    overflow: clip;
    z-index: 2;
}

.basic-section-with-links__background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    mix-blend-mode: luminosity;
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

.basic-section-with-links .container {
    position: relative;
    z-index: 2;
}

.basic-section-with-links__content {
    display: flex;
    align-items: center;
    gap: 200px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.basic-section-with-links__links-container {
    flex: 1;
    max-width: 100%;
    width: 100%;
}

.basic-section-with-links__links-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.basic-section-with-links__link-item {
    margin-bottom: 5px;
}

.basic-section-with-links__link-item:last-child {
    margin-bottom: 0;
}

.basic-section-with-links__link {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.4;
    transition: all 300ms ease;
}

.basic-section-with-links__link:hover {
    color: #F2EE1A;
}

.basic-section-with-links__link-arrow {
    display: none;
}

.basic-section-with-links__text-container {
    flex: 1;
    max-width: 565px;
    width: 100%;
}

.basic-section-with-links__title {
    color: #F2EE1A;
    width: 100%;
    max-width: 600px;
    margin-bottom: 35px !important;
}

.basic-section-with-links__text {
    color: #fff;
    width: 100%;
    max-width: 1080px;
}

.basic-section-with-links__text p {
    margin-bottom: 20px;
}

.basic-section-with-links__text p:last-child {
    margin-bottom: 0;
}

.basic-section-with-links__button-container {
    margin-top: 45px;
}

.basic-section-with-links__button {
    display: inline-block;
    padding: 20px 60px;
    background-color: #F2EE1A;
    color: #265899 !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 24px;
    border-radius: 0px 50px 0px 50px;
    transition: all 300ms ease;
    white-space: nowrap;
    
}

.basic-section-with-links__button:hover {
    background-color: #36C166;
    color: #fff !important;
    border-radius: 50px;
}

.business-insurance-home h2, .h2-style {
	font-size: 75px;
}

/* Responsive styles */
@media (max-width: 1440px) {
    .basic-section-with-links__button {
        padding: 18px 40px;
        font-size: 22px;
    }
    .basic-section-with-links__link {
        font-size: 40px;
        line-height: 1.3;
    }
    .basic-section-with-links {
        padding: 100px 0px;
        border-radius: 150px 0 150px 0;
    }
}

@media (max-width: 1024px) {
    .basic-section-with-links {
        border-radius: 100px 0 100px 0;
    }

    .basic-section-with-links__content{
        gap: 70px;
    }
    
    .basic-section-with-links__link {
        font-size: 32px;
    }
    
    .basic-section-with-links__button {
        padding: 15px 40px;
        font-size: 20px;
        border-radius: 0px 35px 0px 35px;
    }
    
    .basic-section-with-links__button:hover {
        border-radius: 35px;
    }
}

@media (max-width: 768px) {
    .basic-section-with-links__links-list {
        display: flex;
        flex-wrap: wrap;
    }
    .basic-section-with-links__link-item {
        margin-bottom: 10px;
        width: 50%;
    }

    .basic-section-with-links {
        padding: 60px 0px;
        border-radius: 50px 0 50px 0;
    }
    
    .basic-section-with-links__content {
        flex-direction: column;
        gap: 30px;
    }
    
    .basic-section-with-links__links-container,
    .basic-section-with-links__text-container {
        max-width: 100%;
    }
    
    .basic-section-with-links__text {
        margin-bottom: 24px;
    }
    
    .basic-section-with-links__button {
        font-size: 1.1rem;
        border-radius: 0px 25px 0px 25px;
    }
    
    .basic-section-with-links__button:hover {
        border-radius: 25px;
    }
    
    .basic-section-with-links__link {
        font-size: 28px;
    }
    
    /* Reverse layout on mobile should still be normal order */
    .basic-section-with-links--reverse .basic-section-with-links__content {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .basic-section-with-links__link {
        font-size: max(7.5vw, 30px) !important;
    }
    .basic-section-with-links__link-item{
        width: 100%;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .basic-section-with-links__button {
        transition: none;
    }
    
    .basic-section-with-links__button:hover {
        transform: none;
    }
}