.hero-section{
    padding-bottom:30px;
    padding-top:65px;
}

.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: 100%;
    position: relative;
    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;
}

/* --- Estilos base del CTA --- */
.cta {
    display: inline-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;
    padding: 12px 24px; /* Un poco de padding base */
}

.cta:hover {
    color: #ffffff;
    opacity: 0.8;
}

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

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


/* --- Estilos para Móvil (< 991px) --- */
@media (max-width: 991px) {
    .hero-title { font-size: 40px; line-height: 1.1; margin-top: 0px; }
    .hero-description { font-size: 26px; line-height: 1.4; }
    .section-title { font-size: 20px;}
    
    .full-width-image {
        height: auto;
        overflow: visible; 
    }

    .full-width-image img {
        height: auto; 
        object-fit: contain;
    }

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

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

    .image-box { width: 335px; height: 237.83px; }


    .content-box { 
        width: 335px; 
        align-items: flex-start; 
        gap: 1.5rem; 
    }

    .title { font-size: 20px; line-height: 24px; }
    .description { font-size: 16px; line-height: 22px; }

    
    .cta { 
        width: auto;
        min-width: 180px;
        height: auto; 
        padding: 12px 28px;
        font-size: 15px; 
        border-radius: 50px;
        white-space: nowrap;
        align-self: flex-start; 
        margin-top: 1rem; 
    }

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