
    @media (max-width: 800px) {
        .long-link {
            word-break: break-all; /* Permite cortar palabras largas */
            hyphens: auto; /* Agrega guiones en palabras largas si es necesario */
            overflow-wrap: break-word; /* Otra opción para cortar palabras largas */
         }
        .container{
            width: 100vw;
            height: auto;
            margin: 0;
        }
    }
        .container{
            font-size: 16px;
        }
        .seei img{
            width: 100%;
        }
        .col-xs-12{
            margin-right: 10%;
        }
        .row{
            margin-top: 10px;
        }
        .container {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            max-width: 100%;
            margin: 0 auto;
            position: relative;
        }
        .logo {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 50px;
        }
        h1 {
            color: #5CB85C;
            margin-top: 0;
            text-align: center;

        }
        h2 {
            color: #5CB85C;
        }
        ul {
            padding-left: 20px;
        }
        .nota {
            font-weight: bold;
        }
        .contact {
            margin-top: 20px;
        }
        .social-icons {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        .social-icons img {
            width: 30px;
            margin: 0 10px;
        }
        .corner-decoration {
            position: absolute;
            width: 100px;
            height: 100px;
            border: 3px solid #ff6600;
            border-radius: 50%;
        }
        .top-left {
            top: -50px;
            left: -50px;
            border-bottom-right-radius: 0;
        }
        .bottom-right {
            bottom: -50px;
            right: -50px;
            border-top-left-radius: 0;
        }

