<style>
        /* --- ESTILOS GENERALES Y RESET --- */
        body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #ffffff;
            color: #333;
            line-height: 1.6;
        }
        .container {
            width: 85%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 0;
         
        }
        h1 {
            text-align: center;
            color: #F000;    
            margin: 40px 0 60px 0;
            font-size: 3em;
            border-bottom: 2px solid #3498db;
            padding-bottom: 10px;
        }

        /* --- HEADER Y NAVEGACIÓN (Conservado de la página principal) --- */
        header {
            background-color: #ffffff;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 7.5%; 
            max-width: 1200px;
            margin: 0 auto;
        }
       .logo {
            font-size: 2em;
            font-weight: bold;
            color: #2c3e50; /* Color de marca */
            text-decoration: none;
        }
        .logo img { 
            height: 40px; 
            width: auto;
            vertical-align: middle;
        }
        .nav-menu a {
            color: #555;
            text-decoration: none;
            padding: 8px 15px;
            margin-left: 10px;
            font-weight: 500;
            transition: color 0.3s, border-bottom 0.3s;
        }
        .nav-menu a:hover, .nav-menu a.active-service { 
            color: #3498db;
            border-bottom: 2px solid #3498db;
        }
        
        /* --- SECCIÓN DE SERVICIOS (CONTENEDOR ÚNICO CON FLOAT) --- */
        .service-section {
            padding 60px 0 ;
            border-bottom: 1px solid #eee;
            /* Necesario para contener los floats */
            overflow: hidden; 
            
        }

        /* FONDOS ALTERNADOS */
        .service-section:nth-child(even) {
            background-color: #f9f9f9; 
        }
        .service-section:nth-child(odd) {
            background-color: #ffffff; 
        }

        /* Estilos generales de la imagen dentro de la sección */
        .service-section img {
            width: 45%; /* Menos del 50% para dar espacio al texto */
            height: 300px; 
            object-fit: cover;
            margin: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        /* Títulos y Texto (Todo el texto se justifica) */
        .service-section h2 {
            margin: 20px;
            color: #3498db;
            font-size: 2em;
            
        }
        .service-section p {
            margin:20px;
            text-align: justify;
        }


        /* --- ALINEACIÓN DE IMAGEN ALTERNADA (FLOAT) --- */

        /* Secciones Impares (1, 3, 5...): IMAGEN A LA DERECHA */
        .service-section:nth-child(odd) img {
            float: right;
            margin-left: 30px; /* Espacio a la izquierda de la imagen */
        }
        .service-section:nth-child(odd) h2 {
            text-align: left; /* El título se alinea a la izquierda para el flujo del texto */
        }
        
        /* Secciones Pares (2, 4, 6...): IMAGEN A LA IZQUIERDA */
        .service-section:nth-child(even) img {
            float: left;
            margin-right: 30px; /* Espacio a la derecha de la imagen */
        }
        .service-section:nth-child(even) h2 {
            text-align: right; /* El título se alinea a la derecha para el flujo del texto */
        }
        
        /* --- FOOTER (SIMULADO) --- */
        footer {
            background-color: #1e2a36;
            color: #aaa;
            text-align: center;
            padding: 20px 0;
            font-size: 0.9em;
        }

         /* --- RESPONSIVE DESIGN (Móviles) --- */
        @media (max-width: 768px) {
            h1 {
                font-size: 2em;
            }
            .service-section img {
                float: none; /* Desactivar float en móvil */
                width: 100%; /* Imagen de ancho completo */
                margin: 0 0 20px 0;
            }
            .service-section h2 {
                text-align: left !important; /* Títulos a la izquierda en móvil */
            }
            .nav-menu {
                display: none; 
            }
