/* Mejor diseño para detalles de curso */
#detalle-curso-list .row {
    margin-bottom: 48px;
}

#detalle-curso-list img {
    max-width: 100%;
    max-height: 340px;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    object-fit: cover;
    margin: 0 auto;
    display: block;
}

#detalle-curso-list .p-4 {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#detalle-curso-list h2,
#detalle-curso-list h3 {
    font-weight: 700;
    color: #14375a;
    margin-bottom: 16px;
}

#detalle-curso-list .btn-info {
    background: #04c6f2;
    border: none;
    font-size: 1.1rem;
    padding: 12px 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(4, 198, 242, 0.08);
    transition: background 0.2s;
}

#detalle-curso-list .btn-info:hover {
    background: #029ec0;
}

@media (max-width: 991px) {
    #detalle-curso-list img {
        max-height: 220px;
    }

    #detalle-curso-list .p-4 {
        min-height: 180px;
        padding: 18px;
    }
}

/* Contacto: imagen más pegada al formulario sin perder responsive */
#contact .row.gy-5.gx-lg-5 {
    align-items: center;
}

#contact .col-lg-6 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
}

#contact .img-fluid {
    margin-right: 0;
    margin-left: 0;
}

/* Contacto: mejora en móvil */
@media (max-width: 991px) {
    #contact .row.gy-5.gx-lg-5 {
        flex-direction: column;
        gap: 0 !important;
    }

    #contact .col-lg-6 {
        width: 100%;
        max-width: 400px;
        margin: 0 auto 18px auto;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #contact .img-fluid {
        max-width: 160px;
        margin-bottom: 12px;
    }

    #contact h3.fw-bold {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 10px;
    }

    #contact form {
        width: 100%;
        max-width: 400px;
        margin: 0 auto 24px auto;
        padding: 18px 12px;
        border-radius: 12px;
    }
}