body { font-family: Arial, sans-serif; line-height: 1.6; margin: 0; padding: 20px; background-color: #f5f5f5; }
        .container { max-width: 800px; margin: 20px auto; padding: 20px; background: white; border-radius: 8px; box-shadow: 0 0 10px rgba(0,0,0,0.1); }
        .banner-header { background-image: url("../images/header-compliance.png");background-size: cover; min-height: 240px; background-position: center; text-align: center; display: flex; justify-content: center; align-items: center;}
        .banner-header h1 { color: white; }
        .text-container { background-color: #f9f9f9; padding: 20px; border-radius:4px;}
        .form-group { margin-bottom: 15px; }
        label { display: block; margin-bottom: 5px; font-weight: bold; color: #333; }
        input[type="text"], input[type="email"], select, textarea { 
            width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 4px; 
            box-sizing: border-box; font-size: 16px;
        }
        textarea { height: 120px; resize: vertical; }
        button { 
            background-color: #4CAF50; color: white; padding: 12px 20px; 
            border: none; border-radius: 4px; cursor: pointer; font-size: 16px;
        }
        button:hover { background-color: #45a049; }
        .error { color: #d9534f; margin: 5px 0; }
        .success { color: #5cb85c; font-weight: bold; }
        #nombreContainer { display: none; margin-top: 10px; }
        .alert { padding: 15px; margin-bottom: 20px; border: 1px solid transparent; border-radius: 4px; }
        .alert-danger { color: #a94442; background-color: #f2dede; border-color: #ebccd1; }
        #contactoInfoContainer, #otraCiudadContainer {
            background-color: #f9f9f9;
            padding: 15px;
            border-radius: 5px;
            border: 1px solid #eee;
            margin-top: 10px;
        }
         /* Estilos para el modal */
        #modalPrivacidad {
            font-family: Arial, sans-serif;
            line-height: 1.6;
        }
        
        #modalPrivacidad h3 {
            color: #2c3e50;
            margin-top: 20px;
        }
        
        #modalPrivacidad h4 {
            color: #3498db;
            margin-top: 15px;
        }
        
        #modalPrivacidad p {
            margin-bottom: 15px;
        }
        
        /* Estilo para el scroll del modal */
        #modalPrivacidad div::-webkit-scrollbar {
            width: 8px;
        }
        
        #modalPrivacidad div::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        #modalPrivacidad div::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 4px;
        }
        
        #modalPrivacidad div::-webkit-scrollbar-thumb:hover {
            background: #555;
        }
        /* Estilo personalizado para el input file */
        .file-input-container {
            position: relative;
            overflow: hidden;
            display: inline-block;
            width: 100%;
        }
        
        .file-input-button {
            background-color: #4CAF50;
            color: white;
            padding: 10px 15px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            display: inline-block;
        }
        
        .file-input-button:hover {
            background-color: #45a049;
        }
        
        .file-input-name {
            margin-left: 10px;
            font-style: italic;
            color: #555;
        }
        
        #archivo {
            position: absolute;
            left: 0;
            top: 0;
            opacity: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }
        .footer{ background-color: black; padding: 20px; color: white; font-size: 12px; text-align: center;}
        .footer a { color: #c3d500; font-weight: bold;}