.hero-title {
    font-weight: 700;
    font-size: 80px;
    line-height: 80px;
    color: #2020F1;
    margin-top: 100px;
    margin-bottom: 100px !important;
}

.hero-description {
    font-weight: 500;
    font-size: 40px;
    line-height: 60px;
    color: #0000F0;
    text-align: left; 
    margin-top: 60px;
}


.full-width-image {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 600px;
    overflow: hidden;
}

.full-width-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.section-title {
    font-size: 30px;
    font-weight: 700;
    color: #0000F0;
    text-align: center;
    line-height: 70px;
    
}

.how-we-work {
    background: linear-gradient(90deg, #0000FF 66.67%, #F1F1F1 100%);
    padding: 5rem 0; 
    width: 100%;
}

.how-we-work p {
    font-size: 30px;
    font-weight: 500;
    color: #FFFFFF;
    width: 70%;
    margin: auto;
    text-align: left;
    line-height: 1.4;
}


.card-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 67px;
    width: 100%;
    max-width: 1320px;
    

}

.image-box {
    width: 493px;
    height: 350px;
    flex-shrink: 0;
    overflow: hidden;
    background: #D9D9D9;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease-in-out;
}

.card-container:hover .image-box img {
    transform: scale(1.1);
}

.content-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    width: 760px;
}

.title {
    font-size: 30px;
    font-weight: 700;
    line-height: 37px;
    color: #000000;
    margin: 0;
    margin-bottom: 1.45rem;
}

.description {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: #000000;
    margin: 0;
}


.cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    background: #0000F0;
    border-radius: 73.97px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 17.75px;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.cta:hover{
    color:#ffffff;
}


.separator-line {
    width: 100%;
    max-width: 1320px;
    height: 0px;
    border: 0.5px solid #2020F1;
    margin: 60px auto;
}

.nav-link {
    color: blue !important;
}



@media (max-width: 991px) {
    .hero-title { font-size: 45px; line-height: 1.1; margin-top: 60px; }
    .hero-description { font-size: 24px; line-height: 1.4; }
    
    .full-width-image { height: 300px; }

    .how-we-work p {
        font-size: 20px;
        width: 90%;
        text-align: left; 
    }

    .card-container {
        flex-direction: column;
        align-items: flex-start;
        width: 335px;
        margin: 40px auto;
        gap: 21.74px;
    }

    .image-box { width: 335px; height: 237.83px; }
    .content-box { width: 335px; }
    .title { font-size: 20px; line-height: 24px; }
    .description { font-size: 16px; line-height: 22px; }
    .cta { width: 154.41px; height: 41.4px; font-size: 13.67px; }

    .separator-line {
        max-width: 335px;
        margin: 32px auto;
    }
}