.partners-hero {
    background-color: #fff;
    padding: 110px 20px;
    width: 100%;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}


.content-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 100px;
}


.text-content {
    flex: 1;
    max-width: 550px;
}

.text-content h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #000;
    line-height: 1.1;
    margin-bottom: 20px;
}

.text-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 35px;
    font-family: "Montserrat", sans-serif;
}

.whatsapp-icon {
    right: 15px;
}

.btn-cta {
    display: inline-block;
    background-color: #26C749;
    font-family: "Montserrat", sans-serif;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 6px;
    font-size: 1.1rem;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.btn-cta:hover {
    background-color: #1ebc57;
    transform: translateY(-2px);
}


.image-content {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.image-content img {
    max-width: 90%;
    height: auto;
    display: block;
}


.whatsapp-pill {
    position: absolute;
    top: -50px;
    right: 0;
    display: inline-flex;
    align-items: center;
    background-color: #25d366;
    color: #fff;
    text-decoration: none;
    padding: 5px 5px 5px 20px;
    border-radius: 50px;
    transition: transform 0.2s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.whatsapp-pill:hover {
    transform: scale(1.05);
}

.whatsapp-pill .text {
    text-align: right;
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.2;
    margin-right: 10px;
}

.whatsapp-pill .icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}


@media (max-width: 900px) {
    .content-flex {
        flex-direction: column;
        text-align: center;
    }

    .image-content {
        justify-content: center;
        margin-top: 30px;
    }

    .whatsapp-pill {
        position: static;
        margin-bottom: 20px;
        display: inline-flex;
    }

    .text-content h1 {
        font-size: 2.2rem;
    }
}