        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
            color: #333;
            line-height: 1.6;
        }

        .fullwidth-section {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Banner Full Width */
        .hero-banner {
            position: relative;
            width: 100%;
            height: 50vh;
            min-height: 400px;
            overflow: hidden;
        }

        .banner-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../img/fondo1.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .banner-background::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(211, 47, 47, 0.8) 0%, rgba(25, 118, 210, 0.8) 100%);
        }

        .banner-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 0 20px;
        }

        .banner-title {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
            background: linear-gradient(45deg, #ffffff, #f0f0f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .banner-subtitle {
            font-size: 1.5rem;
            font-weight: 300;
            opacity: 0.9;
            max-width: 600px;
        }

        /* Content Section */
        .content-section {
            flex: 1;
            padding: 80px 20px;
            background: #ffffff;
        }

        .content-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Mission Row */
        .mission-row {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 25px;
            padding: 60px 50px;
            margin-bottom: 50px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(211, 47, 47, 0.1);
            position: relative;
            overflow: hidden;
        }

        .mission-row::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 8px;
            height: 100%;
            background: linear-gradient(45deg, #d32f2f, #1976d2);
        }

        .content-title {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 30px;
            position: relative;
        }

        .content-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #d32f2f, #1976d2);
            border-radius: 2px;
        }

        .content-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 25px;
            align-items: justify-content;
        }

        .highlight {
            background: linear-gradient(45deg, #d32f2f, #1976d2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 600;
        }

        .creation-date {
            background: linear-gradient(45deg, #d32f2f, #1976d2);
            color: white;
            padding: 20px 30px;
            border-radius: 15px;
            text-align: center;
            font-weight: 600;
            font-size: 1.1rem;
            margin-top: 30px;
            box-shadow: 0 10px 25px rgba(211, 47, 47, 0.3);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Requirements Row */
        .requirements-row {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 25px;
            padding: 60px 50px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(25, 118, 210, 0.1);
            position: relative;
            overflow: hidden;
        }

        .requirements-row::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 8px;
            height: 100%;
            background: linear-gradient(45deg, #1976d2, #2196f3);
        }

        .requirements-title::after {
            background: linear-gradient(45deg, #1976d2, #2196f3);
        }

        .requirements-content {
            max-width: 1000px;
            margin: 0 auto;
        }

        .requirements-intro {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 35px;
            text-align: center;
        }

        .requirements-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 40px 0;
        }

        .requirement-category {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid #e0e0e0;
        }

        .category-title {
            font-size: 1.3rem;
            color: #2c3e50;
            margin-bottom: 20px;
            text-align: center;
            font-weight: 600;
            background: linear-gradient(45deg, #1976d2, #2196f3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .requirements-list {
            list-style: none;
        }

        .requirements-list li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
            font-size: 1.05rem;
            line-height: 1.6;
            color: #444;
        }

        .requirements-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 0;
            width: 24px;
            height: 24px;
            background: linear-gradient(45deg, #1976d2, #2196f3);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            font-weight: bold;
        }

        .requirement-item {
            background: white;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            border-left: 4px solid #1976d2;
        }

        .requirement-letter {
            display: inline-block;
            width: 30px;
            height: 30px;
            background: linear-gradient(45deg, #1976d2, #2196f3);
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 30px;
            font-weight: bold;
            margin-right: 10px;
        }

        .requirement-text {
            display: inline;
            color: #333;
        }

        .additional-info {
            background: linear-gradient(45deg, #ff9800, #ff5722);
            color: white;
            padding: 25px;
            border-radius: 15px;
            margin-top: 40px;
            text-align: center;
            font-weight: 600;
            box-shadow: 0 8px 25px rgba(255, 152, 0, 0.3);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .additional-info p {
            margin: 0;
            font-size: 1.1rem;
        }

        /* Responsive Design */
        @media screen and (max-width: 1024px) {
            .banner-title {
                font-size: 3.2rem;
            }
            
            .mission-row, .requirements-row {
                padding: 50px 40px;
            }
            
            .requirements-grid {
                gap: 25px;
            }
        }

        @media screen and (max-width: 768px) {
            .hero-banner {
                height: 40vh;
                min-height: 300px;
            }
            
            .banner-title {
                font-size: 2.5rem;
            }
            
            .banner-subtitle {
                font-size: 1.2rem;
            }
            
            .content-section {
                padding: 60px 15px;
            }
            
            .mission-row, .requirements-row {
                padding: 40px 30px;
                border-radius: 20px;
            }
            
            .content-title {
                font-size: 2rem;
            }
            
            .requirements-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        @media screen and (max-width: 480px) {
            .hero-banner {
                height: 35vh;
                min-height: 250px;
            }
            
            .banner-title {
                font-size: 2rem;
            }
            
            .banner-subtitle {
                font-size: 1rem;
            }
            
            .content-section {
                padding: 40px 10px;
            }
            
            .mission-row, .requirements-row {
                padding: 30px 20px;
                border-radius: 15px;
            }
            
            .content-title {
                font-size: 1.7rem;
            }
            
            .content-text {
                font-size: 1rem;
            }
            
            .creation-date {
                font-size: 1rem;
                padding: 15px 20px;
            }
            
            .requirements-list li {
                padding-left: 25px;
                font-size: 0.95rem;
            }
            
            .requirement-item {
                padding: 15px;
            }
            
            .additional-info {
                padding: 20px;
                font-size: 1rem;
            }
        }

        /* Animaciones */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-in {
            animation: fadeInUp 0.8s ease-out;
        }