.by-pe-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    /* background: #5f7f7c; */
    padding: 60px;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
}

/* Imagen EXACTA 500x500 */
.by-pe-image img {
    width: 500px;
    height: 500px;
    object-fit: cover;
    /* border-radius: 8px; */
    display: block;
}

/* Contenido */
.by-pe-content {
    max-width: 500px;
}

/* Título */
.by-pe-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

/* Texto */
.by-pe-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #e5e5e5;
    font-family: 'Montserrat', sans-serif;
}

/* Botón */
.by-pe-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #b7d4d1;
    color: #1d2c2b;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.by-pe-btn:hover {
    background: #ffffff;
}

/* Responsive */
@media (max-width: 900px) {
    .by-pe-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .by-pe-image img {
        width: 100%;
        max-width: 500px;
        height: auto;
    }

    .by-pe-content {
        max-width: 100%;
    }
}