        /* Estilos generales */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
        }

        /* Primer bloque - imagen de cabecera */
        .header-image img {
            width: 100%;
            height: auto;
        }

        /* Ocultar imagen móvil por defecto */
        .header-image-mobile {
            display: none;
        }

        /* Segundo bloque - texto, botón y párrafos */
        .second-block {
            padding: 20px;
            margin: 0 50px;
            text-align: center;
        }

        .second-block h1 {
            font-weight: 700;
            margin: 60px 20px 0px;
        }

        .second-block button {
            cursor: pointer;
            background-color: #E3BDBC;
            font-size: 16px;
            font-weight: 600;
            border: 0;
            width: 320px;
            height: 35px;
            cursor: pointer;
            margin: 50px 20px 80px;
        }

        .second-block p {
            font-size: 18px;
            letter-spacing: 0.5px;
            line-height: 28px;
        }

        /* Tercer bloque - tres imágenes */
        .third-block {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            width: 100%;
            padding: 0;
        }

        .third-block img {
            width: 33.33%;
            height: auto;
            margin: 0;
            padding: 0;
        }

        .video-block {
            width: 33.33%;
            height: auto;
            object-fit: cover;
            margin: 0;
            padding: 0;
        }

        /* Cuarto bloque - texto, imagen, botón */
        .fourth-block {
            text-align: center;
        }

        .fourth-block p {
            margin-top: 80px;
            margin-bottom: 50px;
            font-size: 18px;
        }

        .fourth-block button {
            cursor: pointer;
            background-color: #E3BDBC;
            font-size: 16px;
            font-weight: 600;
            border: 0;
            width: 320px;
            height: 35px;
            cursor: pointer;
            margin-top: 45px;
            margin-bottom: 115px;
        }

        /* Imagen del bloque 4 */
        .fourth-block img {
            width: 100%;
            height: auto;
        }

        /* Ocultar imagen móvil por defecto en el bloque 4 */
        .fourth-image-mobile {
            display: none;
        }

        /* Ocultar imagen de escritorio y mostrar la móvil para pantallas pequeñas */
        @media (max-width: 768px) {

            /* Cabecera */
            .header-image-desktop {
                display: none;
            }

            .header-image-mobile {
                display: block;
            }

            .second-block {
                margin: 0 10px;
            }
            .second-block h1 {
                margin: 30px 20px;
            }    
            .second-block button {
                cursor: pointer;
                background-color: #E3BDBC;
                font-size: 16px;
                font-weight: 600;
                border: 0;
                width: 320px;
                height: 35px;
                cursor: pointer;
                margin: 20px 20px 50px
            }
            .third-block {
                display: block;
            }

            .third-block img {
                width: 100%;
                margin-bottom: -4px;
            }
            .video-block {
                width: 100%;
                height: auto;
                object-fit: cover;
                margin-bottom: -9px;
            }
            

            .fourth-block p {
                margin-top: 80px;
                margin: 50px 20px;
                font-size: 18px;
            }

            /* Cuarto bloque - mostrar imagen para móvil y ocultar escritorio */
            .fourth-image-desktop {
                display: none;
            }

            .fourth-image-mobile {
                display: block;
            }
        }