/* Reset básico */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            color: #333;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        /* Header */
        .header {
            padding: 20px;
            background-color: #fff;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            display: flex;
            justify-content: center;
        }
        
        .header-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .logo img {
            width: 80px;
            margin-bottom: 15px;
            border-radius: 4px;
        }
        
        .header h1 {
            font-size: 24px;
            font-weight: bold;
            color: #003366;
        }
        
        /* Main layout */
        .main-content {
            display: flex;
            justify-content: center;
            gap: 20px;
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 20px;
            flex: 1;
        }
        
        .info-section, .form-section {
            background-color: #fff;
            padding: 25px;
            width: 100%;
            max-width: 550px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            height: auto; /* Altura automática para evitar espacios vacíos */
        }
        
        /* Contenedor principal de la sección de formulario */
        .form-section {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }
        
        /* Estructura interior de la sección info para el diseño especificado */
        .info-section {
            display: flex;
            flex-direction: column;
            justify-content: space-between; /* Distribuye el espacio */
            min-height: 600px; /* Asegura altura mínima para la distribución */
        }
        
        /* Agrupación de elementos superiores */
        .info-content-top {
            display: flex;
            flex-direction: column;
        }
        
        /* Agrupación de elementos inferiores */
        .info-content-bottom {
            display: flex;
            flex-direction: column;
            margin-top: auto; /* Empuja el elemento hacia abajo */
        }
        
        /* H3 centrado verticalmente */
        .info-content-middle {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: auto 0; /* Centrado vertical */
            padding: 20px 0;
        }
        
        .info-section h2,
        .form-section h2 {
            font-size: 22px;
            margin-bottom: 25px;
            color: #003366;
            text-align: center;
            border-bottom: 2px solid #e0e0e0;
            padding-bottom: 15px;
        }
        
        .info-section p {
            margin-bottom: 18px;
            line-height: 1.6;
        }
        
        /* Destacado similar al diseño anterior */
        .destacado {
            background-color: #fffde7;
            border-left: 4px solid #fbc02d;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        
        /* Estilo para h3 centrado */
        .info-section h3 {
            font-size: 18px;
            font-weight: bold;
            color: #003366;
            text-align: center;
            width: 100%;
        }
        
        .info-section .contacto {
            font-size: 16px;
            color: #003366;
            background-color: #f4f4f4;
            padding: 15px;
            border-radius: 6px;
            text-align: center;
            margin: 0;
        }
        
        /* Lista con viñetas */
        ul {
            margin-left: 20px;
            margin-bottom: 20px;
        }
        
        ul li {
            margin-bottom: 8px;
        }
        
        /* Formulario */
        form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            flex-grow: 1; /* Hace que el formulario ocupe todo el espacio disponible */
        }
        
        form input,
        form textarea {
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 15px;
            transition: border-color 0.3s;
        }
        
        form input:focus,
        form textarea:focus {
            outline: none;
            border-color: #003366;
            box-shadow: 0 0 0 2px rgba(0, 51, 102, 0.1);
        }
        
        /* Contadores de vehículos */
        .vehiculo-contador {
            display: flex;
            align-items: center;
            background-color: #f4f4f4;
            padding: 12px;
            border-radius: 6px;
            margin-bottom: 10px;
        }
        
        .vehiculo-contador label {
            flex: 3;
            font-weight: 600;
            font-size: 15px;
        }
        
        .vehiculo-contador input {
            flex: 1;
            max-width: 80px;
            text-align: center;
            margin: 0;
            padding: 8px;
        }
        
        /* Contenedor para los contadores */
        .contadores-container {
            margin: 15px 0;
        }
        
        form textarea {
            min-height: 100px;
            resize: vertical;
        }
        
        form button {
            padding: 14px 28px;
            background-color: #003366;
            color: #fff;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            font-size: 16px;
            align-self: center;
            margin-top: 20px;
            transition: background-color 0.3s, transform 0.2s;
        }
        
        form button:hover {
            background-color: #00509e;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 51, 102, 0.3);
        }
        
        /* Media queries para responsividad */
        @media (max-width: 900px) {
            .main-content {
                flex-direction: column;
                align-items: center;
            }
            
            .info-section, .form-section {
                max-width: 100%;
            }
            
            /* Mantener la distribución vertical en pantallas pequeñas */
            .info-section {
                min-height: auto;
            }
            
            .info-content-middle {
                margin: 30px 0;
            }
            
            .info-content-bottom {
                margin-top: 30px;
            }
        }
        
        @media (max-width: 600px) {
            .header {
                flex-direction: column;
                text-align: center;
                padding: 15px;
            }
            
            .logo img {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .header h1 {
                font-size: 20px;
            }
            
            .info-section, .form-section {
                padding: 20px 15px;
            }
            
            .vehiculo-contador {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .vehiculo-contador input {
                max-width: 100%;
                width: 100%;
                margin-top: 8px;
            }
        }