        * {
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            background-image: url('../img/background.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            color: #333;
            margin: 0;
            padding: 2rem 1rem;
            text-align: center;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.85);
            z-index: -1;
        }

        .container {
            max-width: 800px;
            width: 100%;
            margin: 0 auto;
            background-color: rgba(255, 255, 255, 0.95);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .logo {
            max-width: 300px;
            width: 100%;
            height: auto;
            border-radius: 8px;
        }

        h1 {
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .section {
            margin-bottom: 2.5rem;
        }

        p {
            font-size: clamp(1rem, 2.5vw, 1.1rem);
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        a {
            color: #0066cc;
            text-decoration: none;
            font-weight: bold;
        }

        a:hover {
            text-decoration: underline;
        }

        .enlaces {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin: 2rem 0;
        }

        .enlaces a {
            background-color: #0066cc;
            color: white;
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s ease;
            display: inline-block;
        }

        .enlaces a:hover {
            background-color: #0052a3;
            text-decoration: none;
        }

        .contacto {
            background-color: rgba(245, 245, 245, 0.95);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
            margin-top: 3rem;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }

        .contacto h3 {
            margin-top: 0;
            margin-bottom: 1.5rem;
            color: #333;
        }

        .contacto-item {
            display: block;
            margin: 1rem 0;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .contacto-item a {
            color: #0066cc;
        }

        @media (min-width: 768px) {
            .enlaces {
                flex-direction: row;
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .enlaces a {
                flex: 0 1 auto;
                min-width: 200px;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 1rem 0.5rem;
                background-attachment: scroll;
            }
            
            .container {
                padding: 1.5rem;
                margin: 0.5rem;
            }
            
            .logo {
                max-width: 250px;
            }
            
            .contacto {
                padding: 1.5rem;
                margin-top: 2rem;
            }
        }